We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5305d commit 3b9bd6dCopy full SHA for 3b9bd6d
java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java
@@ -113,12 +113,6 @@ protected static void checkByteStringIsUtf8(ByteString byteString)
113
}
114
115
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
-
122
protected static <T> void addAll(final Iterable<T> values, final List<? super T> list) {
123
Builder.addAll(values, list);
124
0 commit comments