]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/dbObjects/CertificateProfile.java
fix: Include visibility and read-only specifications wherever sensible.
[gigi.git] / src / org / cacert / gigi / dbObjects / CertificateProfile.java
index 43c1dd5ca3831d70161b25f23d6a7a03ff49d790..d9a9e34f170383fe177f8aebfbebba94717e6fbf 100644 (file)
@@ -22,9 +22,9 @@ public class CertificateProfile implements IdCachable {
 
     private final String visibleName;
 
-    private static HashMap<String, CertificateProfile> byName = new HashMap<>();
+    private static final HashMap<String, CertificateProfile> byName = new HashMap<>();
 
-    private static HashMap<Integer, CertificateProfile> byId = new HashMap<>();
+    private static final HashMap<Integer, CertificateProfile> byId = new HashMap<>();
 
     private final Map<String, PropertyTemplate> pt;
 
@@ -252,4 +252,5 @@ public class CertificateProfile implements IdCachable {
         }
         return true;
     }
+
 }