We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb87cef commit 537b42dCopy full SHA for 537b42d
atom-basis/src/main/java/oo/atom/codegen/bytebuddy/validator/ValAtom.java
@@ -39,7 +39,7 @@ public ValAtom() {
39
super(
40
new ValSingle(new AllFieldsArePrivateFinal(), "All Atom's fields must be private final"),
41
new ValSingle(new NoArrayFields(), "Fields of array type are restricted in Atoms"),
42
- new ValSingle(new AllMethodsAreFinal(), "All Atom's methods must be private final"),
+ new ValSingle(new AllMethodsAreFinal(), "All Atom's methods must be public final"),
43
new ValSingle(new HasNoStaticMethods(), "Atom shouldn't have static methods"),
44
new ValSingle(new IsNotAbstract(), "Atoms can't be abstract")
45
);
0 commit comments