diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-17 05:03:14 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-07-17 05:10:43 +0200 |
commit | 99f763a7294065333bee1d269dc28a744e072bcc (patch) | |
tree | 05414d4178b0ccf87bd33553ea9fc407a1a19023 /src | |
parent | 775ab75ee856727e6c0eb3c8957b8710e3de663c (diff) | |
download | lombok-99f763a7294065333bee1d269dc28a744e072bcc.tar.gz lombok-99f763a7294065333bee1d269dc28a744e072bcc.tar.bz2 lombok-99f763a7294065333bee1d269dc28a744e072bcc.zip |
Updated spelling of LICENCE to LICENSE, and updated copyright notice of help text printed by main executable.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/lombok/core/Main.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/lombok/core/Main.java b/src/core/lombok/core/Main.java index 6a02199a..bfd9c203 100644 --- a/src/core/lombok/core/Main.java +++ b/src/core/lombok/core/Main.java @@ -79,7 +79,7 @@ public class Main { @Override public int runApp(List<String> args) { try { - InputStream in = Main.class.getResourceAsStream("/LICENCE"); + InputStream in = Main.class.getResourceAsStream("/LICENSE"); try { ByteArrayOutputStream out = new ByteArrayOutputStream(); byte[] b = new byte[65536]; @@ -94,7 +94,7 @@ public class Main { in.close(); } } catch (Exception e) { - System.err.println("License file not found. Check http://projectlombok.org/LICENCE"); + System.err.println("License file not found. Check http://projectlombok.org/LICENSE"); return 1; } } @@ -142,7 +142,7 @@ public class Main { out.println("------------------------------"); } out.println("projectlombok.org v" + Version.getVersion()); - out.println("Copyright (C) 2009 Reinier Zwitserloot and Roel Spilker."); + out.println("Copyright (C) 2009-2010 Reinier Zwitserloot and Roel Spilker."); out.println("Run 'lombok license' to see the lombok license agreement."); out.println(); out.println("Run lombok without any parameters to start the graphical installer."); |