9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 19:19:07 +00:00

Map changes

This commit is contained in:
Daniel Mills
2021-07-15 23:25:06 -04:00
parent 753b69726a
commit fff6e50702
4 changed files with 367 additions and 79 deletions

View File

@@ -39,4 +39,8 @@ public class KSet<T> extends HashSet<T> {
public KSet(int initialCapacity) {
super(initialCapacity);
}
public KSet<T> copy() {
return new KSet<T>(this);
}
}