diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-01-09 21:24:07 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-01-09 21:25:47 +0100 |
commit | 101adef99c670cd05951a1ef66c1530b4234c1ca (patch) | |
tree | 360ab04e04106f417aebadaf9c8dabf04745cf00 /src/core/lombok | |
parent | d332b22fa9e2da502d3230c2f44191d42cf90522 (diff) | |
download | lombok-101adef99c670cd05951a1ef66c1530b4234c1ca.tar.gz lombok-101adef99c670cd05951a1ef66c1530b4234c1ca.tar.bz2 lombok-101adef99c670cd05951a1ef66c1530b4234c1ca.zip |
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.
Diffstat (limited to 'src/core/lombok')
-rw-r--r-- | src/core/lombok/core/Version.java | 4 |
1 files changed, 2 insertions, 2 deletions
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); } } |