@@ -81,9 +81,8 @@ public interface Tag
8181 void write (DataOutput output ) throws IOException ;
8282
8383 /**
84- * Reads a {@link Tag} from the given {@link DataInput},
85- * based on the specified tag type, with limitations of the
86- * {@link NBTLimiter}.
84+ * Reads a {@link Tag} from the given {@link DataInput}, based on the
85+ * specified tag type, with limitations of the {@link NBTLimiter}.
8786 *
8887 * @param id the nbt type
8988 * @param input the input to read from
@@ -104,8 +103,8 @@ static TypedTag readById(byte id, DataInput input, NBTLimiter limiter) throws IO
104103 }
105104
106105 /**
107- * Reads a {@link NamedTag} from the given {@link DataInput},
108- * with limitations of the {@link NBTLimiter}.
106+ * Reads a {@link NamedTag} from the given {@link DataInput}, with
107+ * limitations of the {@link NBTLimiter}.
109108 *
110109 * @param input the data input to read from
111110 * @param limiter the limiter for this read operation
@@ -120,8 +119,8 @@ static NamedTag readNamedTag(DataInput input, NBTLimiter limiter) throws IOExcep
120119 }
121120
122121 /**
123- * Serializes the given {@link TypedTag} into a byte array.
124- * This is the inverse operation of {@link #fromByteArray(byte[])}.
122+ * Serializes the given {@link TypedTag} into a byte array. This is the
123+ * inverse operation of {@link #fromByteArray(byte[])}.
125124 *
126125 * @param tag the tag to convert
127126 * @return the serialized byte array
@@ -137,8 +136,8 @@ static byte[] toByteArray(TypedTag tag) throws IOException
137136 }
138137
139138 /**
140- * Deserializes the given byte array into a {@link TypedTag}.
141- * This is the inverse operation of {@link #toByteArray(TypedTag)}.
139+ * Deserializes the given byte array into a {@link TypedTag}. This is the
140+ * inverse operation of {@link #toByteArray(TypedTag)}.
142141 *
143142 * @param data the byte array to read from
144143 * @return the deserialized {@link TypedTag}
@@ -150,8 +149,8 @@ static TypedTag fromByteArray(byte[] data) throws IOException
150149 }
151150
152151 /**
153- * Deserializes the given byte array into a {@link TypedTag},
154- * with limitations of the {@link NBTLimiter}.
152+ * Deserializes the given byte array into a {@link TypedTag}, with
153+ * limitations of the {@link NBTLimiter}.
155154 *
156155 * @param data the byte array to read from
157156 * @param limiter the limiter for this read operation
0 commit comments