Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankit Gupta committed Apr 8, 2014
1 parent 1422044 commit 8a50971
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions java/org/rocksdb/Options.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public boolean createIfMissing() {
* the next time the database is opened.
*
* Default: 4MB
* @param size of write buffer
* @param size of write buffer.
* @see RocksDB::Open()
*/
public void setWriteBufferSize(int writeBufferSize) {
Expand All @@ -88,7 +88,7 @@ public int writeBufferSize() {
* storage, new writes can continue to the other write buffer.
* Default: 2
*
* @param maximum number of write buffers
* @param maximum number of write buffers.
* @see RocksDB::Open()
*/
public void setMaxWriteBufferNumber(int maxWriteBufferNumber) {
Expand All @@ -115,7 +115,7 @@ public int maxWriteBufferNumber() {
*
* Default: 4K
*
* @param block size
* @param block size.
* @see RocksDB::Open()
*/
public void setBlockSize(int blockSize) {
Expand All @@ -141,7 +141,7 @@ public int blockSize() {
* (which is true if max_open_files is large).
* Default: true
*
* @param disable seek compaction
* @param disable seek compaction.
* @see RocksDB::Open()
*/
public void setDisableSeekCompaction(boolean disableSeekCompaction) {
Expand Down

0 comments on commit 8a50971

Please sign in to comment.