rdblue commented on code in PR #5195:
URL: https://github.com/apache/iceberg/pull/5195#discussion_r918491734


##########
data/src/main/java/org/apache/iceberg/data/DeleteFilter.java:
##########
@@ -192,13 +196,10 @@ protected void markRowDeleted(T item) {
   }
 
   public Predicate<T> eqDeletedRowFilter() {
-    if (eqDeleteRows == null) {
-      eqDeleteRows = applyEqDeletes().stream()
-          .map(Predicate::negate)
-          .reduce(Predicate::and)
-          .orElse(t -> true);
-    }
-    return eqDeleteRows;
+    return applyEqDeletes().stream()
+            .map(Predicate::negate)
+            .reduce(Predicate::and)
+            .orElse(t -> true);

Review Comment:
   Please fix indentation. Continuation indents are 4 spaces. Rolling back this 
change should fix it.



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

To unsubscribe, e-mail: [email protected]

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