davecromberge commented on code in PR #11774:
URL: https://github.com/apache/pinot/pull/11774#discussion_r1357492853


##########
pinot-core/src/main/java/org/apache/pinot/core/common/ObjectSerDeUtils.java:
##########
@@ -515,23 +518,23 @@ public VarianceTuple deserialize(ByteBuffer byteBuffer) {
     }
   };
 
-  public static final ObjectSerDe<PinotFourthMoment> 
PINOT_FOURTH_MOMENT_OBJECT_SER_DE
-      = new ObjectSerDe<PinotFourthMoment>() {
-    @Override
-    public byte[] serialize(PinotFourthMoment value) {
-      return value.serialize();
-    }
+  public static final ObjectSerDe<PinotFourthMoment> 
PINOT_FOURTH_MOMENT_OBJECT_SER_DE =
+      new ObjectSerDe<PinotFourthMoment>() {
+        @Override
+        public byte[] serialize(PinotFourthMoment value) {
+          return value.serialize();
+        }
 
-    @Override
-    public PinotFourthMoment deserialize(byte[] bytes) {
-      return PinotFourthMoment.fromBytes(bytes);
-    }
+        @Override
+        public PinotFourthMoment deserialize(byte[] bytes) {
+          return PinotFourthMoment.fromBytes(bytes);
+        }
 
-    @Override
-    public PinotFourthMoment deserialize(ByteBuffer byteBuffer) {
-      return PinotFourthMoment.fromBytes(byteBuffer);
-    }
-  };
+        @Override
+        public PinotFourthMoment deserialize(ByteBuffer byteBuffer) {
+          return PinotFourthMoment.fromBytes(byteBuffer);
+        }
+      };

Review Comment:
   I've reverted these additional formatting changes in 
https://github.com/apache/pinot/pull/11774/commits/0d125dc5682ad0281f1ab1365ec1da731855dcdc



-- 
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: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to