Skip to content

Commit 7a9b30e

Browse files
committed
JavaDoc corrections (#199)
1 parent 3524995 commit 7a9b30e

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/main/java/org/lmdbjava/CursorIterable.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@
4141
* <p>
4242
* An instance will create and close its own cursor.
4343
*
44-
* <p>
45-
* If iterating over keys stored with {@link DbiFlags#MDB_INTEGERKEY} you must
46-
* provide a Java comparator when constructing the {@link Dbi} or this class. It
47-
* is more efficient to use a comparator only with this class, as this avoids
48-
* LMDB calling back into Java code to perform the integer key comparison.
49-
*
5044
* @param <T> buffer type
5145
*/
5246
public final class CursorIterable<T> implements

src/main/java/org/lmdbjava/Env.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ public Dbi<T> openDbi(final byte[] name, final Comparator<T> comparator,
365365
* secondary (but uncommon) use of the comparator is to act as a callback from
366366
* the native library if <code>nativeCb</code> is <code>true</code>. This is
367367
* usually avoided due to the overhead of native code calling back into Java.
368-
* It is instead highly recommended to set the correct {@link DbiFlag}s to
368+
* It is instead highly recommended to set the correct {@link DbiFlag} to
369369
* allow the native library to correctly order the intended keys.
370370
*
371371
* <p>

0 commit comments

Comments
 (0)