Fix JDK11 compatibility toArray needs hints. Ref https://github.com/clj-commons/ordered/issues/40
1 files changed, 2 insertions(+), 1 deletions(-) M src/io/dominic/rich_crdt/lww_element_set.clj
M src/io/dominic/rich_crdt/lww_element_set.clj => src/io/dominic/rich_crdt/lww_element_set.clj +2-1
@@ 88,7 88,8 @@ (size [this] (count s)) java.util.Set (isEmpty [this] (.isEmpty ^java.util.Set s)) (toArray [this array] (.toArray ^java.util.Collection s array)) (^objects toArray [this ^objects array] (.toArray ^java.util.Collection s array)) (toArray [this] (.toArray ^java.util.Collection s)) (containsAll [this coll] (.containsAll ^java.util.Collection s coll)) clojure.lang.IFn (invoke [this v] (s v)))