fix(minecraft-fabric-helper): Add missing newline in error log messages
This commit is contained in:
@@ -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
|
||||||
|
|||||||
+1
-1
@@ -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");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user