Merge pull request #504 from fyrz/RocksJava-Flush-Correction

[RocksJava] FlushOptions Correction
This commit is contained in:
Igor Canadi 2015-02-12 08:47:18 -08:00
commit 2d62e80511

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;
}