Incorporated review comments

- added spaces between operators
- removed obsolete text in JavaDoc
This commit is contained in:
fyrz 2015-01-22 23:47:31 +01:00
parent 908258a4f2
commit dd53428f8b

View File

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