Merge pull request #369 from fyrz/Small-Fix

[RocksJava] Minor correction to the previous pull request merge
This commit is contained in:
Yueh-Hsuan Chiang 2014-10-27 16:42:46 -07:00
commit 75d7e2c374

View File

@ -23,7 +23,7 @@ public class RocksIterator extends RocksObject {
super();
nativeHandle_ = nativeHandle;
// rocksDB must point to a valid RocksDB instance.
assert(rocksDB);
assert(rocksDB != null);
// RocksIterator must hold a reference to the related RocksDB instance
// to guarantee that while a GC cycle starts RocksDBIterator instances
// are freed prior to RocksDB instances.