Le 20/06/2014 20:25, Pirate Praveen a écrit :

heads up for java 8 compatibility.

According to:

http://anonscm.debian.org/viewvc/pkg-java/trunk/libcommons-collections3-java/debian/patches/java8-compatibility.patch?view=markup

MultiHashMap.remove has been renamed to MultiHashMap.removeMapping so
adding a patch with:

@@ -196,7 +196,7 @@ public class CollectionMap<K, V> extends
MultiHashMap {

      public void removeAll(Map<? extends K, ? extends V> m) {
          for (final Map.Entry<? extends K, ? extends V> e :
m.entrySet()) {
-            this.remove(e.getKey(), e.getValue());
+            this.removeMapping(e.getKey(), e.getValue());
          }
      }

should help.

This class is no longer needed, it won't be in the next release.

Cheers,
Sylvain

--

--- You received this message because you are subscribed to the Google Groups "jOpenDocument" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jopendocument+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to