]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/dbObjects/Domain.java
FIX: Typo
[gigi.git] / src / org / cacert / gigi / dbObjects / Domain.java
index 056af154173b7ae9616c1f7c0b4eb07528997e4f..8e575038f13989a346427afe2969db766a3c355a 100644 (file)
@@ -15,7 +15,7 @@ public class Domain implements IdCachable {
 
     private int id;
 
-    public Domain(int id) throws SQLException {
+    private Domain(int id) throws SQLException {
         PreparedStatement ps = DatabaseConnection.getInstance().prepare("SELECT memid, domain FROM `domains` WHERE id=? AND deleted IS NULL");
         ps.setInt(1, id);