aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/collect/IterablesChain.java
diff options
context:
space:
mode:
authorGravatar shahan <shahan@google.com>2018-03-14 17:08:08 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-14 17:09:34 -0700
commita1c2826e0fe95959d498b18d38eb8d2a7d45e55d (patch)
tree5310b0b9d18f5bd71dd443342d7b68af30332223 /src/main/java/com/google/devtools/build/lib/collect/IterablesChain.java
parent92044990cdc318fa49cd769181ad9866a9d86ef6 (diff)
Splits the iterableMarshaller into runtime codecs.
Makes NestedSetCodec into a runtime codec instead of a Marshaller. PiperOrigin-RevId: 189110883
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/collect/IterablesChain.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/collect/IterablesChain.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/collect/IterablesChain.java b/src/main/java/com/google/devtools/build/lib/collect/IterablesChain.java
index 5fa4f8621e..fe0f4bbe0c 100644
--- a/src/main/java/com/google/devtools/build/lib/collect/IterablesChain.java
+++ b/src/main/java/com/google/devtools/build/lib/collect/IterablesChain.java
@@ -40,7 +40,7 @@ public final class IterablesChain<T> implements Iterable<T> {
private final Iterable<T> chain;
- private IterablesChain(Iterable<T> chain) {
+ IterablesChain(Iterable<T> chain) {
this.chain = chain;
}
@@ -103,7 +103,7 @@ public final class IterablesChain<T> implements Iterable<T> {
}
/**
- * If this is called, the the resulting {@link IterablesChain} object uses a hash set to remove
+ * If this is called, the resulting {@link IterablesChain} object uses a hash set to remove
* duplicate elements.
*/
public Builder<T> deduplicate() {