Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static TolerantDoubleComparison comparing(DoubleComparer comparer) {
}
}

private interface DoubleComparer {
interface DoubleComparer {
void compareAgainst(double other);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ static TolerantFloatComparison comparing(FloatComparer comparer) {
}
}

private interface FloatComparer {
interface FloatComparer {
void compareAgainst(float other);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static TolerantIntegerComparison comparing(IntegerComparer comparer) {
}
}

private interface IntegerComparer {
interface IntegerComparer {
void compareAgainst(int other);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static TolerantLongComparison comparing(LongComparer comparer) {
}
}

private interface LongComparer {
interface LongComparer {
void compareAgainst(long other);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static DuplicateGroupedAndTyped countDuplicatesAndMaybeAddTypeInfoReturnObject(
}
}

private static final class NonHashingMultiset<E extends @Nullable Object> {
static final class NonHashingMultiset<E extends @Nullable Object> {
private final Multiset<Wrapper<E>> contents = LinkedHashMultiset.create();

private NonHashingMultiset() {}
Expand Down
Loading