[RocksJava] FlushOptions Correction

SetWaitForFlush did not set flush properly.
This commit is contained in:
fyrz 2015-02-12 17:31:38 +01:00
parent 5d1151deba
commit eaf39568e5

View File

@ -24,7 +24,7 @@ public class FlushOptions extends RocksObject {
*/
public FlushOptions setWaitForFlush(boolean waitForFlush) {
assert(isInitialized());
waitForFlush(nativeHandle_);
setWaitForFlush(nativeHandle_, waitForFlush);
return this;
}