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
|
* <p>We currently have three versions:</p>
|
||||||
* We currently have three versions:</p>
|
|
||||||
*
|
*
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li><strong>0</strong> - This version is currently written
|
* <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.
|
* @return the reference to the current option.
|
||||||
*/
|
*/
|
||||||
public BlockBasedTableConfig setFormatVersion(int formatVersion) {
|
public BlockBasedTableConfig setFormatVersion(int formatVersion) {
|
||||||
assert(formatVersion>=0 && formatVersion <=2);
|
assert(formatVersion >= 0 && formatVersion <= 2);
|
||||||
formatVersion_ = formatVersion;
|
formatVersion_ = formatVersion;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user