This is an automated email from the ASF dual-hosted git repository.
russellspitzer pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new 2e94af5d1f API: Use correct method name in exception message (#15453)
2e94af5d1f is described below
commit 2e94af5d1f7d71848518348c81d858b2209c3751
Author: Xiang Li <[email protected]>
AuthorDate: Fri Feb 27 02:02:10 2026 +0800
API: Use correct method name in exception message (#15453)
---
api/src/main/java/org/apache/iceberg/RowDelta.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/api/src/main/java/org/apache/iceberg/RowDelta.java
b/api/src/main/java/org/apache/iceberg/RowDelta.java
index f5f10b70f9..d64f32ffd9 100644
--- a/api/src/main/java/org/apache/iceberg/RowDelta.java
+++ b/api/src/main/java/org/apache/iceberg/RowDelta.java
@@ -54,7 +54,7 @@ public interface RowDelta extends SnapshotUpdate<RowDelta> {
*/
default RowDelta removeRows(DataFile file) {
throw new UnsupportedOperationException(
- getClass().getName() + " does not implement deleteFile");
+ getClass().getName() + " does not implement removeRows");
}
/**