From 101adef99c670cd05951a1ef66c1530b4234c1ca Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 9 Jan 2012 21:24:07 +0100 Subject: Lombok now adds a line about itself to the Eclipse about dialog via patching. This can be used to check that lombok is managing to successfully inject code into the eclipse VM instance. --- src/core/lombok/core/Version.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core') diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index 24b4c59c..332bb7d6 100644 --- a/src/core/lombok/core/Version.java +++ b/src/core/lombok/core/Version.java @@ -40,7 +40,7 @@ public class Version { */ public static void main(String[] args) { if (args.length > 0) { - System.out.printf("Lombok %s", getFullVersion()); + System.out.printf("Lombok %s\n", getFullVersion()); } else { System.out.println(VERSION); } @@ -65,6 +65,6 @@ public class Version { } public static String getFullVersion() { - return String.format("v%s \"%s\"\n", VERSION, RELEASE_NAME); + return String.format("v%s \"%s\"", VERSION, RELEASE_NAME); } } -- cgit