aboutsummaryrefslogtreecommitdiff
path: root/android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java')
-rw-r--r--android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java b/android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java
index d2f99e03b..fe73ca118 100644
--- a/android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java
+++ b/android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java
@@ -116,7 +116,7 @@ final class RegularImmutableSortedMultiset<E> extends ImmutableSortedMultiset<E>
return this;
} else {
RegularImmutableSortedSet<E> subElementSet = elementSet.getSubSet(from, to);
- return new RegularImmutableSortedMultiset<E>(
+ return new RegularImmutableSortedMultiset<>(
subElementSet, cumulativeCounts, offset + from, to - from);
}
}