chenjunjiedada commented on a change in pull request #1219:
URL: https://github.com/apache/iceberg/pull/1219#discussion_r466422605



##########
File path: core/src/main/java/org/apache/iceberg/V1Metadata.java
##########
@@ -184,6 +153,86 @@ public Long deletedRowsCount() {
     public ManifestFile copy() {
       return wrapped.copy();
     }
+
+    @Override
+    public <T> T get(int pos, Class<T> javaClass) {
+      return javaClass.cast(get(pos));
+    }
+
+    @Override
+    public Object get(int pos) {

Review comment:
       I met some checkstyle errors about breaking the order of overloaded 
functions, so I reorder the functions. I will take a look at this again.




----------------------------------------------------------------
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.

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



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to