Skip to content

Commit 13ded9d

Browse files
committed
Corrected Javadoc error in TagDeserializationContext
Fixed the description of `@throws ParserException` to correctly mention deserialization instead of serialization.
1 parent bbf0bcb commit 13ded9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nbt/src/main/java/core/nbt/serialization/TagDeserializationContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public interface TagDeserializationContext {
1717
* @param type the class of the object to be returned
1818
* @param <T> the type of the object to be returned
1919
* @return an object of the specified type deserialized from the tag
20-
* @throws ParserException if an error occurs during serialization
20+
* @throws ParserException if an error occurs during deserialization
2121
*/
2222
<T> T deserialize(Tag tag, Class<T> type) throws ParserException;
2323

0 commit comments

Comments
 (0)