Skip to content

Commit 0844d14

Browse files
committed
Fix missing ENUMs being logged as errors on startup
1 parent 7dd4957 commit 0844d14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/laytonsmith/abstraction/enums/EnumConvertor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public abstract class EnumConvertor<Abstracted extends Enum, Concrete extends En
2323
/**
2424
* This is changed reflectively by the startup mechanism. Please do not change the name of this variable.
2525
*/
26-
private final boolean useError = true;
26+
private boolean useError = true;
2727

2828
protected EnumConvertor() {
2929
abstractionenum annotation = this.getClass().getAnnotation(abstractionenum.class);

0 commit comments

Comments
 (0)