Skip to content

Commit 71f5d8a

Browse files
committed
Don't use '>' in JavaDoc
1 parent 94fac0a commit 71f5d8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

objectbox-java/src/main/java/io/objectbox/BoxStoreBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ private static File getAndroidFilesDir(Object context) {
227227
}
228228

229229
/**
230-
* Sets the maximum number of concurrent readers. For most applications, the default is fine (> 100 readers).
230+
* Sets the maximum number of concurrent readers. For most applications, the default is fine (> 100 readers).
231231
* <p>
232232
* A "reader" is short for a thread involved in a read transaction.
233233
* <p>

objectbox-java/src/main/java/io/objectbox/exception/DbMaxReadersExceededException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Thrown when the maximum of readers (read transactions) was exceeded.
2424
* Verify that you run a reasonable amount of threads only.
2525
* <p>
26-
* If you intend to work with a very high number of threads (>100), consider increasing the number of maximum readers
26+
* If you intend to work with a very high number of threads (&gt;100), consider increasing the number of maximum readers
2727
* using {@link BoxStoreBuilder#maxReaders(int)} and enabling query retries using
2828
* {@link BoxStoreBuilder#queryAttempts(int)}.
2929
* <p>

0 commit comments

Comments
 (0)