Skip to content

Commit d1611fd

Browse files
committed
Remove trailing blank line in CompoundTagSchema
1 parent 096c2de commit d1611fd

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/main/java/org/glavo/nbt/internal/schema/CompoundTagSchema.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ public record SchemaEntry(String name, TagSchema<?> schema, boolean required) {
7979
public static final class Builder implements NBTSchema.Builder.OfCompoundTag {
8080
private final LinkedHashMap<String, SchemaEntry> entries = new LinkedHashMap<>();
8181

82-
8382
private void add(String name, NBTSchema<?> schema, boolean required) {
8483
entries.put(name, new SchemaEntry(name, (TagSchema<?>) schema, required));
8584
}

0 commit comments

Comments
 (0)