removed Emotes from code

I have removed the emotes from System.out.println
and System.err.println as they did not show in windows CMD
This commit is contained in:
minster586
2025-07-16 05:02:09 -04:00
parent 540eedba94
commit 32b56b56d7
5 changed files with 42 additions and 42 deletions

12
pom.xml
View File

@@ -20,7 +20,7 @@
</properties>
<dependencies>
<!-- JavaFX modules -->
<!-- JavaFX modules -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
@@ -37,14 +37,14 @@
<version>${javafx.version}</version>
</dependency>
<!-- YAML parsing -->
<!-- YAML parsing -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.2</version>
</dependency>
<!-- XML support -->
<!-- XML support -->
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
@@ -54,14 +54,14 @@
<build>
<plugins>
<!-- Compiler plugin -->
<!-- Compiler plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
<!-- Jar plugin for manifest -->
<!-- Jar plugin for manifest -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
@@ -75,7 +75,7 @@
</configuration>
</plugin>
<!-- Shade plugin to bundle everything -->
<!-- Shade plugin to bundle everything -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>