fix(minecraft-fabric-helper): Add missing newline in error log messages

This commit is contained in:
2026-05-24 16:39:47 +02:00
parent 21749e9d0b
commit 4bc05471d8
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- `core`: Fixed return type of `MutableStructuredConfigEntry#apply` to correctly be itself. - `core`: Fixed return type of `MutableStructuredConfigEntry#apply` to correctly be itself.
- `minecraft-fabric-helper`: Fixed missing new line in error log message.
- `weaver-pojo`: Fixed `StringMapPojoWeaver` weaving entries without `@StringMapWeaving` annotation. - `weaver-pojo`: Fixed `StringMapPojoWeaver` weaving entries without `@StringMapWeaving` annotation.
## [0.8.1] - 2026-04-26 ## [0.8.1] - 2026-04-26
@@ -154,7 +154,7 @@ public class FabricConfigContainerHelper<T extends @Nullable Object> {
stringBuilder.append(type); stringBuilder.append(type);
stringBuilder.append(" while reading "); stringBuilder.append(" while reading ");
stringBuilder.append(filePath); stringBuilder.append(filePath);
stringBuilder.append(": "); stringBuilder.append(": \n");
for (TweedReadIssue issue : issues) { for (TweedReadIssue issue : issues) {
stringBuilder.append(" - ").append(issue).append("\n"); stringBuilder.append(" - ").append(issue).append("\n");
} }