rdblue commented on a change in pull request #1219:
URL: https://github.com/apache/iceberg/pull/1219#discussion_r467155175
##########
File path: api/src/main/java/org/apache/iceberg/data/Record.java
##########
@@ -32,7 +32,7 @@
Object get(int pos);
- Record copy();
+ Record copyRecord();
Review comment:
This works for me:
```java
interface A {
A copy();
}
interface B {
B copy();
}
public class AB implements A, B {
@Override
public AB copy() {
return this;
}
}
```
----------------------------------------------------------------
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]