Remove unused methods from Print class

This commit is contained in:
Paul Schaub 2022-08-01 17:44:22 +02:00
parent 01dbaab598
commit b7c1b4f1a1
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 0 additions and 12 deletions

View File

@ -6,18 +6,6 @@ package sop.cli.picocli;
public class Print {
public static void errln(String string) {
// CHECKSTYLE:OFF
System.err.println(string);
// CHECKSTYLE:ON
}
public static void trace(Throwable e) {
// CHECKSTYLE:OFF
e.printStackTrace();
// CHECKSTYLE:ON
}
public static void outln(String string) {
// CHECKSTYLE:OFF
System.out.println(string);