paulk-asert commented on code in PR #665:
URL: 
https://github.com/apache/commons-collections/pull/665#discussion_r2616558853


##########
src/main/java/org/apache/commons/collections4/multimap/ArrayListValuedHashMap.java:
##########
@@ -118,6 +119,13 @@ protected ArrayList<V> createCollection() {
         return new ArrayList<>(initialListCapacity);
     }
 
+    @Override
+    public ArrayListValuedHashMap<V, K> inverse() {
+        final ArrayListValuedHashMap<V, K> result = new 
ArrayListValuedHashMap<>();
+        MultiMapUtils.inverseInto(this, result);
+        return result;

Review Comment:
   agreed



-- 
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]

Reply via email to