[RocksJava] JavaDoc errors in Java8

Some of the latest commits included illegal JavaDoc formattings.
main
fyrz 10 years ago
parent b229f970df
commit c787fb50b8
  1. 6
      java/org/rocksdb/AbstractRocksIterator.java
  2. 10
      java/org/rocksdb/RocksIteratorInterface.java

@ -8,13 +8,13 @@ package org.rocksdb;
/**
* Base class implementation for Rocks Iterators
* in the Java API
* <p/>
*
* <p>Multiple threads can invoke const methods on an RocksIterator without
* external synchronization, but if any of the threads may call a
* non-const method, all threads accessing the same RocksIterator must use
* external synchronization.</p>
*
* @param P The type of the Parent Object from which the Rocks Iterator was
* @param <P> The type of the Parent Object from which the Rocks Iterator was
* created. This is used by disposeInternal to avoid double-free
* issues with the underlying C++ object.
* @see org.rocksdb.RocksObject
@ -78,7 +78,7 @@ public abstract class AbstractRocksIterator<P extends RocksObject>
/**
* <p>Deletes underlying C++ iterator pointer.</p>
* <p/>
*
* <p>Note: the underlying handle can only be safely deleted if the parent
* instance related to a certain RocksIterator is still valid and initialized.
* Therefore {@code disposeInternal()} checks if the parent is initialized

@ -10,7 +10,7 @@ package org.rocksdb;
* access to data one entry at a time. Multiple implementations
* are provided by this library. In particular, iterators are provided
* to access the contents of a DB and Write Batch.</p>
* <p/>
*
* <p>Multiple threads can invoke const methods on an RocksIterator without
* external synchronization, but if any of the threads may call a
* non-const method, all threads accessing the same RocksIterator must use
@ -43,7 +43,7 @@ public interface RocksIteratorInterface {
/**
* <p>Position at the first entry in the source whose key is that or
* past target.</p>
* <p/>
*
* <p>The iterator is valid after this call if the source contains
* a key that comes at or past target.</p>
*
@ -55,7 +55,7 @@ public interface RocksIteratorInterface {
/**
* <p>Moves to the next entry in the source. After this call, Valid() is
* true if the iterator was not positioned at the last entry in the source.</p>
* <p/>
*
* <p>REQUIRES: {@link #isValid()}</p>
*/
public void next();
@ -63,13 +63,13 @@ public interface RocksIteratorInterface {
/**
* <p>Moves to the previous entry in the source. After this call, Valid() is
* true if the iterator was not positioned at the first entry in source.</p>
* <p/>
*
* <p>REQUIRES: {@link #isValid()}</p>
*/
public void prev();
/**
* <pIf an error has occurred, return it. Else return an ok status.
* <p>If an error has occurred, return it. Else return an ok status.
* If non-blocking IO is requested and this operation cannot be
* satisfied without doing some IO, then this returns Status::Incomplete().</p>
*

Loading…
Cancel
Save