kenhuuu commented on code in PR #2776:
URL: https://github.com/apache/tinkerpop/pull/2776#discussion_r1763604434


##########
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/SingleTypeSerializer.java:
##########
@@ -47,8 +47,8 @@ public class SingleTypeSerializer<T> extends 
SimpleTypeSerializer<T> {
             new SingleTypeSerializer<>(DataType.BOOLEAN, Buffer::readBoolean, 
(v, b) -> b.writeBoolean(v));
     public static final SingleTypeSerializer<Byte> ByteSerializer =
             new SingleTypeSerializer<>(DataType.BYTE, Buffer::readByte, (v, b) 
-> b.writeByte(v));
-    public static final SingleTypeSerializer<Year> YearSerializer =
-            new SingleTypeSerializer<>(DataType.YEAR, bb -> 
Year.of(bb.readInt()), (v, b) -> b.writeInt(v.getValue()));
+//    public static final SingleTypeSerializer<Year> YearSerializer =

Review Comment:
   Nit: delete if not needed instead of comment



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to