This is an automated email from the ASF dual-hosted git repository.
amoghj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new 2b189759a9 Core: Remove unused field from BaseSnapshot (#8496)
2b189759a9 is described below
commit 2b189759a902cdd8ad433d0c1643376b78ec867c
Author: Ajantha Bhat <[email protected]>
AuthorDate: Wed Sep 6 08:00:24 2023 +0530
Core: Remove unused field from BaseSnapshot (#8496)
I think this field got superseded by the one from TableMetadata. Hence,
this has no callers.
---
core/src/main/java/org/apache/iceberg/BaseSnapshot.java | 2 --
1 file changed, 2 deletions(-)
diff --git a/core/src/main/java/org/apache/iceberg/BaseSnapshot.java
b/core/src/main/java/org/apache/iceberg/BaseSnapshot.java
index ac27191df5..a3c4fc8738 100644
--- a/core/src/main/java/org/apache/iceberg/BaseSnapshot.java
+++ b/core/src/main/java/org/apache/iceberg/BaseSnapshot.java
@@ -34,8 +34,6 @@ import
org.apache.iceberg.relocated.com.google.common.collect.Iterables;
import org.apache.iceberg.relocated.com.google.common.collect.Lists;
class BaseSnapshot implements Snapshot {
- private static final long INITIAL_SEQUENCE_NUMBER = 0;
-
private final long snapshotId;
private final Long parentId;
private final long sequenceNumber;