Skip to content

Commit 6edbcb7

Browse files
committed
Remove trailing blank line in NBTSchema
1 parent b1c85d6 commit 6edbcb7

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/main/java/org/glavo/nbt/validation/NBTSchema.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ default NBTSchema<T> and(NBTSchema<? extends T> other) {
108108
/// Creates a schema that validates if either of the given schemas validate.
109109
///
110110
/// @throws IllegalArgumentException if either schema is null.
111-
112111
default NBTSchema<T> or(NBTSchema<? extends T> other) {
113112
Objects.requireNonNull(other, "other");
114113
return new UnionSchema<>(List.of(this, other));

0 commit comments

Comments
 (0)