From 7079271802176caea4404fc7c80b4656346a2402 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Sun, 4 May 2014 10:33:55 +0200 Subject: thoroughly updated the launch targets for testing lombok in eclipse; they should now be able to handle running JDK8 etc tests. CAREFUL: You MUST name your JDK8 'JavaSE-1.8' or it won't work. Also added a basic test for JDK8 features. --- test/transform/resource/after-delombok/ValInTryWithResources.java | 1 - test/transform/resource/before/ValInTryWithResources.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'test/transform') diff --git a/test/transform/resource/after-delombok/ValInTryWithResources.java b/test/transform/resource/after-delombok/ValInTryWithResources.java index 9aae99a2..42bd3193 100644 --- a/test/transform/resource/after-delombok/ValInTryWithResources.java +++ b/test/transform/resource/after-delombok/ValInTryWithResources.java @@ -1,4 +1,3 @@ -//version 7 import java.io.IOException; public class ValInTryWithResources { public void whyTryInsteadOfCleanup() throws IOException { diff --git a/test/transform/resource/before/ValInTryWithResources.java b/test/transform/resource/before/ValInTryWithResources.java index 780e1c71..a7820062 100644 --- a/test/transform/resource/before/ValInTryWithResources.java +++ b/test/transform/resource/before/ValInTryWithResources.java @@ -1,4 +1,4 @@ -//version 7 +//version 7: import lombok.val; import java.io.IOException; -- cgit