mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
Added method addAll to interface Map
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
package java.util;
|
||||
|
||||
public interface Set<T> extends Collection<T> { }
|
||||
public interface Set<T> extends Collection<T> {
|
||||
public void addAll(Collection<T> c);
|
||||
}
|
||||
|
Reference in New Issue
Block a user