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 401bffc commit 50e3481Copy full SHA for 50e3481
Ocl.java
@@ -1,4 +1,4 @@
1
-package com.example.app6;
+
2
3
4
/******************************
@@ -181,13 +181,13 @@ public static <T> ArrayList<T> initialiseSequence(T ... args)
181
return result;
182
}
183
184
- public static <T> copySet(Collection<T> s)
+ public static <T> HashSet<T> copySet(Collection<T> s)
185
{ HashSet<T> result = new HashSet<T>();
186
result.addAll(s);
187
188
189
190
- public static <T> copySequence(Collection<T> s)
+ public static <T> ArrayList<T> copySequence(Collection<T> s)
191
{ ArrayList<T> result = new ArrayList<T>();
192
193
qvt2umlrsds.pdf
100 KB
0 commit comments