From 2f0e7bc27e62e1f2f338a3bf45bc3d855f4207e6 Mon Sep 17 00:00:00 2001 From: dgelessus <dgelessus@users.noreply.github.com> Date: Wed, 4 Dec 2024 16:36:54 +0100 Subject: [PATCH] Remove a few newlines in startup message --- src/main/java/org/sablecc/sablecc/SableCC.java | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/sablecc/sablecc/SableCC.java b/src/main/java/org/sablecc/sablecc/SableCC.java index 30800ad..8ab3316 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(); } -- GitLab