]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/util/Notary.java
Harden the AssuranceResult enum in Notary.
[gigi.git] / src / org / cacert / gigi / util / Notary.java
index ef0289c790122845bcca8caead853a7e75b7280a..515b25cd30a23601e77a04ea5e6499e47d1bf378 100644 (file)
@@ -58,7 +58,7 @@ public class Notary {
                                "Cannot assure myself."), ASSURANCE_SUCCEDED(""), ASSUREE_CHANGED(
                                "Person details changed. Please start over again."), POINTS_OUT_OF_RANGE(
                                "Points out of range.");
-               String message;
+               private final String message;
                private AssuranceResult(String message) {
                        this.message = message;
                }