From dfc682a0010ff1ba77496dd7644a6dcbe93017e5 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Sun, 7 Jul 2013 09:48:58 +0200 Subject: lombok's compile target is 1.6, but, eclipse project was generated as 1.7. This caused a bunch of weirdness because eclipse changes a bunch of warnings and quickfixes based on this (such as complaining about lack of @SafeVarargs, a 1.7-only feature). --- build.xml | 2 +- src/delombok/lombok/delombok/DelombokApp.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/build.xml b/build.xml index bf13eeff..fb328e3e 100644 --- a/build.xml +++ b/build.xml @@ -256,7 +256,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr - + diff --git a/src/delombok/lombok/delombok/DelombokApp.java b/src/delombok/lombok/delombok/DelombokApp.java index 5b97be08..90a7b55e 100644 --- a/src/delombok/lombok/delombok/DelombokApp.java +++ b/src/delombok/lombok/delombok/DelombokApp.java @@ -84,7 +84,6 @@ public class DelombokApp extends LombokApp { return null; } - @SuppressWarnings("resource") final JarFile toolsJarFile = new JarFile(toolsJar); ClassLoader loader = new ClassLoader() { -- cgit