diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/eclipseAgent/lombok/launch/PatchFixesHider.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/eclipseAgent/lombok/launch/PatchFixesHider.java b/src/eclipseAgent/lombok/launch/PatchFixesHider.java index b1d73352..317b06a4 100644 --- a/src/eclipseAgent/lombok/launch/PatchFixesHider.java +++ b/src/eclipseAgent/lombok/launch/PatchFixesHider.java @@ -148,7 +148,11 @@ final class PatchFixesHider { } public static String addLombokNotesToEclipseAboutDialog(String origReturnValue, String key) { - return (String) Util.invokeMethod(LombokDeps.ADD_LOMBOK_NOTES, origReturnValue, key); + try { + return (String) Util.invokeMethod(LombokDeps.ADD_LOMBOK_NOTES, origReturnValue, key); + } catch (Throwable t) { + return origReturnValue; + } } public static byte[] runPostCompiler(byte[] bytes, String fileName) { |