Skip to content

Commit 66a0344

Browse files
cpovirkGoogle Java Core Libraries
authored andcommitted
Make another class private.
RELNOTES=n/a PiperOrigin-RevId: 793757882
1 parent 69fa58c commit 66a0344

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ public NavigableSet<V> tailSet(@ParametricNullness V fromElement, boolean inclus
758758

759759
/** List decorator that stays in sync with the multimap values for a key. */
760760
@WeakOuter
761-
class WrappedList extends WrappedCollection implements List<V> {
761+
private class WrappedList extends WrappedCollection implements List<V> {
762762
WrappedList(@ParametricNullness K key, List<V> delegate, @Nullable WrappedCollection ancestor) {
763763
super(key, delegate, ancestor);
764764
}

guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ public NavigableSet<V> tailSet(@ParametricNullness V fromElement, boolean inclus
766766

767767
/** List decorator that stays in sync with the multimap values for a key. */
768768
@WeakOuter
769-
class WrappedList extends WrappedCollection implements List<V> {
769+
private class WrappedList extends WrappedCollection implements List<V> {
770770
WrappedList(@ParametricNullness K key, List<V> delegate, @Nullable WrappedCollection ancestor) {
771771
super(key, delegate, ancestor);
772772
}

0 commit comments

Comments
 (0)