Skip to content

Commit 3b9bd6d

Browse files
Breaking Change: Remove unused overload of AbstractMessageLite.addAll that worked on a Collection instead of a List.
PiperOrigin-RevId: 597869849
1 parent 2f5305d commit 3b9bd6d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,6 @@ protected static void checkByteStringIsUtf8(ByteString byteString)
113113
}
114114
}
115115

116-
// For binary compatibility
117-
@Deprecated
118-
protected static <T> void addAll(final Iterable<T> values, final Collection<? super T> list) {
119-
Builder.addAll(values, (List) list);
120-
}
121-
122116
protected static <T> void addAll(final Iterable<T> values, final List<? super T> list) {
123117
Builder.addAll(values, list);
124118
}

0 commit comments

Comments
 (0)