mirror of
https://github.com/google/nomulus.git
synced 2025-07-12 14:08:18 +02:00
Fix a few lint errors (#361)
Replace deprecated bouncycastle class in SslInitializerTestUils. Generic array as vargs: worked around it in ProbingAction and removed unused method in CircularList.
This commit is contained in:
parent
bce09a3aa3
commit
b005e3aeb0
3 changed files with 61 additions and 46 deletions
|
@ -92,14 +92,6 @@ public class CircularList<T> {
|
|||
return this;
|
||||
}
|
||||
|
||||
/** Simply calls {@code addElement}, for each element in {@code elements}. */
|
||||
public AbstractBuilder<T, C> add(T... values) {
|
||||
for (T element : values) {
|
||||
add(element);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
||||
/** Simply calls {@code addElement}, for each element in {@code elements}. */
|
||||
public AbstractBuilder<T, C> add(Iterable<T> values) {
|
||||
values.forEach(this::add);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue