From 99f763a7294065333bee1d269dc28a744e072bcc Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Sat, 17 Jul 2010 05:03:14 +0200 Subject: Updated spelling of LICENCE to LICENSE, and updated copyright notice of help text printed by main executable. --- src/core/lombok/core/Main.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/lombok') 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 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."); -- cgit