AMashenkov commented on a change in pull request #498:
URL: https://github.com/apache/ignite-3/pull/498#discussion_r766633537
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/util/CollectionUtils.java
##########
@@ -285,4 +287,14 @@ public boolean isEmpty() {
private CollectionUtils() {
// No op.
}
+
+ /**
+ * Get unmodifiable copy set of specified collection.
+ *
+ * @param coll Collection of integer to copy.
+ * @return Unmodifiable copy set.
+ */
+ public static Set<Integer> setOf(Collection<Integer> coll) {
Review comment:
```suggestion
public static IntSet setOf(Collection<Integer> coll) {
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]