jankotek / mapdb

MapDB provides concurrent Maps, Sets and Queues backed by disk storage or off-heap-memory. It is a fast and easy to use embedded Java database engine.
https://mapdb.org
Apache License 2.0
4.87k stars 872 forks source link

MapDB 3.0 branch does not compile #964

Closed jankotek closed 4 years ago

jankotek commented 4 years ago

MapDB 3.0 branch compilation fails with following exception:

[ERROR] /home/travis/build/jankotek/mapdb/src/main/java/org/mapdb/IndexTreeLongLongMap.kt:[49,8] Class 'IndexTreeLongLongMap' is not abstract and does not implement abstract member public abstract fun updateValues(p0: LongLongToLongFunction!): Unit defined in org.eclipse.collections.api.map.primitive.MutableLongLongMap

Eclipse Collection added in 10.x version new method to an inteface. Our implementation is missing this method and does not compile