Skip to content

Commit

Permalink
Breaking Change: Remove unused overload of AbstractMessageLite.addAll…
Browse files Browse the repository at this point in the history
… that worked on a Collection instead of a List.

PiperOrigin-RevId: 597869849
  • Loading branch information
protobuf-github-bot authored and copybara-github committed Jan 12, 2024
1 parent 2f5305d commit 3b9bd6d
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,6 @@ protected static void checkByteStringIsUtf8(ByteString byteString)
}
}

// For binary compatibility
@Deprecated
protected static <T> void addAll(final Iterable<T> values, final Collection<? super T> list) {
Builder.addAll(values, (List) list);
}

protected static <T> void addAll(final Iterable<T> values, final List<? super T> list) {
Builder.addAll(values, list);
}
Expand Down

0 comments on commit 3b9bd6d

Please sign in to comment.