Fix @see in two Java functions (#1396)

This commit is contained in:
Siying Dong 2016-10-14 23:03:17 -07:00 committed by Yueh-Hsuan Chiang
parent b1031d6c12
commit fea6fdd676
2 changed files with 1 additions and 3 deletions

View File

@ -455,7 +455,6 @@ public interface ColumnFamilyOptionsInterface {
* @param multiplier the ratio between the total size of level-(L+1)
* files and the total size of level-L files for all L.
* @return the reference to the current option.
* @see #setMaxBytesForLevelBase(long)
*/
Object setMaxBytesForLevelMultiplier(int multiplier);
@ -466,7 +465,6 @@ public interface ColumnFamilyOptionsInterface {
*
* @return the ratio between the total size of level-(L+1) files and
* the total size of level-L files for all L.
* @see #maxBytesForLevelBase()
*/
int maxBytesForLevelMultiplier();

View File

@ -386,7 +386,7 @@ public interface MutableColumnFamilyOptionsInterface {
* threshold. But it's not guaranteed.
* Value 0 will be sanitized.
*
* @param max bytes in a compaction
* @param maxCompactionBytes max bytes in a compaction
* @return the reference to the current option.
* @see #maxCompactionBytes()
*/