mirror of https://github.com/facebook/rocksdb.git
Incorporated review comments
- added spaces between operators - removed obsolete text in JavaDoc
This commit is contained in:
parent
908258a4f2
commit
dd53428f8b
|
@ -337,8 +337,7 @@ public class BlockBasedTableConfig extends TableFormatConfig {
|
|||
}
|
||||
|
||||
/**
|
||||
* <p>For more details on BlockBasedTable's formats, see FORMAT-CHANGES.md
|
||||
* We currently have three versions:</p>
|
||||
* <p>We currently have three versions:</p>
|
||||
*
|
||||
* <ul>
|
||||
* <li><strong>0</strong> - This version is currently written
|
||||
|
@ -360,7 +359,7 @@ public class BlockBasedTableConfig extends TableFormatConfig {
|
|||
* @return the reference to the current option.
|
||||
*/
|
||||
public BlockBasedTableConfig setFormatVersion(int formatVersion) {
|
||||
assert(formatVersion>=0 && formatVersion <=2);
|
||||
assert(formatVersion >= 0 && formatVersion <= 2);
|
||||
formatVersion_ = formatVersion;
|
||||
return this;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue