From 513a27f746e5744fe800147e274ed6cfac90f45c Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Sun, 19 Jan 2014 02:23:14 +0100 Subject: [configuration] Make sure the ConfigurationKeys class is initialized --- src/core/lombok/javac/HandlerLibrary.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/lombok/javac/HandlerLibrary.java') diff --git a/src/core/lombok/javac/HandlerLibrary.java b/src/core/lombok/javac/HandlerLibrary.java index 6994836b..e28033c9 100644 --- a/src/core/lombok/javac/HandlerLibrary.java +++ b/src/core/lombok/javac/HandlerLibrary.java @@ -55,7 +55,7 @@ import com.sun.tools.javac.tree.JCTree.JCCompilationUnit; */ public class HandlerLibrary { static { - ConfigurationKeys.class.getClass(); + ConfigurationKeys.ensureKeysLoaded(); } private final TypeLibrary typeLibrary = new TypeLibrary(); -- cgit