diff --git a/src/main/java/org/sablecc/sablecc/SableCC.java b/src/main/java/org/sablecc/sablecc/SableCC.java index 30800ad22c950da2a642d91060c6276a8a947d7e..8ab331606ab2bc37c7bbdf02017ef95143a7f90c 100644 --- a/src/main/java/org/sablecc/sablecc/SableCC.java +++ b/src/main/java/org/sablecc/sablecc/SableCC.java @@ -35,18 +35,13 @@ public class SableCC { private static final String OPT_PRETTY_PRINT = "--pretty-print"; private static void displayCopyright() { - System.out.println(); System.out.println("SableCC STUPS version " + Version.VERSION); System.out.println("Copyright (C) 1997-2012 Etienne M. Gagnon <egagnon@j-meg.com>,"); System.out.println("2009-2024 HHU Düsseldorf STUPS Group, and others. All rights reserved."); System.out.println(); - System.out - .println("This software comes with ABSOLUTELY NO WARRANTY. This is free software,"); - System.out - .println("and you are welcome to redistribute it under certain conditions."); - System.out.println(); - System.out.println("Type 'sablecc --license' to view"); - System.out.println("the complete copyright notice and license."); + System.out.println("This software comes with ABSOLUTELY NO WARRANTY. This is free software,"); + System.out.println("and you are welcome to redistribute it under certain conditions."); + System.out.println("Type 'sablecc --license' to view the complete copyright notice and license."); System.out.println(); }