Bug fixes

This commit is contained in:
2024-12-26 16:18:55 +01:00
parent 3474aee155
commit 9c7b47fbd3
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
<groupId>me.finn.unlegitlibrary</groupId> <groupId>me.finn.unlegitlibrary</groupId>
<artifactId>unlegitlibrary</artifactId> <artifactId>unlegitlibrary</artifactId>
<version>1.5.9</version> <version>1.5.10</version>
<properties> <properties>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>

View File

@@ -34,7 +34,7 @@ public class FileUtils extends DefaultMethodsOverrider {
try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) { try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream))) {
String line; String line;
while ((line = reader.readLine()) != null) content.append(line); while ((line = reader.readLine()) != null) content.append(line).append("\n");
} }
inputStream.close(); inputStream.close();