This is an automated email from the ASF dual-hosted git repository.
fokko 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 f5635a6567 API: Fix typo in RewriteManifestFiles java doc (#10778)
f5635a6567 is described below
commit f5635a65676df12b00f2c8365357d6026202b397
Author: Amogh Jahagirdar <[email protected]>
AuthorDate: Thu Jul 25 01:02:56 2024 -0600
API: Fix typo in RewriteManifestFiles java doc (#10778)
---
api/src/main/java/org/apache/iceberg/RewriteManifests.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/api/src/main/java/org/apache/iceberg/RewriteManifests.java
b/api/src/main/java/org/apache/iceberg/RewriteManifests.java
index ca823e94d2..32a9011ad6 100644
--- a/api/src/main/java/org/apache/iceberg/RewriteManifests.java
+++ b/api/src/main/java/org/apache/iceberg/RewriteManifests.java
@@ -54,7 +54,7 @@ public interface RewriteManifests extends
SnapshotUpdate<RewriteManifests> {
* then all manifests will be rewritten.
*
* @param predicate Predicate used to determine which manifests to rewrite.
If true then the
- * manifest file will be included for rewrite. If false then then
manifest is kept as-is.
+ * manifest file will be included for rewrite. If false then the
manifest is kept as-is.
* @return this for method chaining
*/
RewriteManifests rewriteIf(Predicate<ManifestFile> predicate);