diff options
Diffstat (limited to 'src/core/lombok/javac/Javac.java')
-rw-r--r-- | src/core/lombok/javac/Javac.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/javac/Javac.java b/src/core/lombok/javac/Javac.java index 64e8ee27..594539cd 100644 --- a/src/core/lombok/javac/Javac.java +++ b/src/core/lombok/javac/Javac.java @@ -187,7 +187,7 @@ public class Javac { * @param ctcLocation location of the compile time constant * @param identifier the name of the field of the compile time constant. */ - public static int getCTCint(Class<?> ctcLocation, String identifier) { + public static int getCtcInt(Class<?> ctcLocation, String identifier) { try { return (Integer)ctcLocation.getField(identifier).get(null); } catch (NoSuchFieldException e) { |