Skip to content

Commit 77d82ee

Browse files
Fix illegal javadoc characters.
1 parent 79f2eec commit 77d82ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

objectbox-java/src/main/java/io/objectbox/model/PropertyFlags.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ private PropertyFlags() { }
7373
public static final int INDEX_HASH = 2048;
7474
/**
7575
* Index uses a 64 bit hash instead of the value
76-
* (recommended mostly for 64 bit machines with values longer >200 bytes; small values are faster with a 32 bit hash)
76+
* (recommended mostly for 64 bit machines with values longer than 200 bytes; small values are faster with a 32 bit hash)
7777
*/
7878
public static final int INDEX_HASH64 = 4096;
7979
/**
80-
* Unused yet: While our default are signed ints, queries & indexes need do know signing info.
80+
* Unused yet: While our default are signed ints, queries and indexes need do know signing info.
8181
* Note: Don't combine with ID (IDs are always unsigned internally).
8282
*/
8383
public static final int UNSIGNED = 8192;

0 commit comments

Comments
 (0)