diff options
Diffstat (limited to 'src/lombok/eclipse')
-rw-r--r-- | src/lombok/eclipse/HandlerLibrary.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lombok/eclipse/HandlerLibrary.java b/src/lombok/eclipse/HandlerLibrary.java index 01b2d021..85711012 100644 --- a/src/lombok/eclipse/HandlerLibrary.java +++ b/src/lombok/eclipse/HandlerLibrary.java @@ -102,7 +102,7 @@ public class HandlerLibrary { String s = null; if ( e instanceof SingleNameReference ) s = new String(((SingleNameReference)e).token); else if ( e instanceof QualifiedNameReference ) s = str(((QualifiedNameReference)e).tokens); - if ( Enum.class.isAssignableFrom(type) ) toEnum(type, s); + if ( Enum.class.isAssignableFrom(type) ) return toEnum(type, s); throw new EnumDecodeFail("Lombok annotations must contain literals only."); } else { throw new EnumDecodeFail("Lombok could not decode this annotation parameter."); |