Fix @see in two Java functions (#1396)

main
Siying Dong 8 years ago committed by Yueh-Hsuan Chiang
parent b1031d6c12
commit fea6fdd676
  1. 2
      java/src/main/java/org/rocksdb/ColumnFamilyOptionsInterface.java
  2. 2
      java/src/main/java/org/rocksdb/MutableColumnFamilyOptionsInterface.java

@ -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();

@ -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()
*/

Loading…
Cancel
Save