aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/javac/Javac.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-08-16 01:24:27 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-08-16 01:24:27 +0200
commite89f1bd33b68ac062a2e313ec05688e4cc6d8727 (patch)
treeaec8178f608fd4c0a100c2afebde503200fdb4d3 /src/core/lombok/javac/Javac.java
parent39d447d6ff70064a9957ee790b36bb63aeefdbe5 (diff)
parent844b36b47c9fec02473b5d27c74c10f10d5c5fc2 (diff)
downloadlombok-e89f1bd33b68ac062a2e313ec05688e4cc6d8727.tar.gz
lombok-e89f1bd33b68ac062a2e313ec05688e4cc6d8727.tar.bz2
lombok-e89f1bd33b68ac062a2e313ec05688e4cc6d8727.zip
Merge branch 'master' of github.com:rzwitserloot/lombok
Diffstat (limited to 'src/core/lombok/javac/Javac.java')
-rw-r--r--src/core/lombok/javac/Javac.java2
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) {