JniDB.java `return get(key, new ReadOptions());` `write(updates, new WriteOptions());` Since these option objects are used in an immutable way, just create a single instance of both instead of instantiating each call.
JniDB.java
return get(key, new ReadOptions());write(updates, new WriteOptions());Since these option objects are used in an immutable way, just create a single instance of both instead of instantiating each call.