You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2020/04/28 01:02:09 UTC

[incubator-iceberg] branch master updated: Remove unused var in BaseRewriteManifests (#981)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new dc81e8d  Remove unused var in BaseRewriteManifests (#981)
dc81e8d is described below

commit dc81e8dc25a7286772606847be1f8b757993fb0e
Author: Anton Okolnychyi <ao...@apple.com>
AuthorDate: Mon Apr 27 18:01:59 2020 -0700

    Remove unused var in BaseRewriteManifests (#981)
---
 core/src/main/java/org/apache/iceberg/BaseRewriteManifests.java | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/core/src/main/java/org/apache/iceberg/BaseRewriteManifests.java b/core/src/main/java/org/apache/iceberg/BaseRewriteManifests.java
index e52c548..5e1d3a2 100644
--- a/core/src/main/java/org/apache/iceberg/BaseRewriteManifests.java
+++ b/core/src/main/java/org/apache/iceberg/BaseRewriteManifests.java
@@ -57,9 +57,6 @@ public class BaseRewriteManifests extends SnapshotProducer<RewriteManifests> imp
   private static final String REPLACED_MANIFESTS_COUNT = "manifests-replaced";
   private static final String PROCESSED_ENTRY_COUNT = "entries-processed";
 
-  private static final ImmutableSet<ManifestEntry.Status> ALLOWED_ENTRY_STATUSES = ImmutableSet.of(
-      ManifestEntry.Status.EXISTING);
-
   private final TableOperations ops;
   private final Map<Integer, PartitionSpec> specsById;
   private final long manifestTargetSizeBytes;