We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d3e3e commit b1983aaCopy full SHA for b1983aa
objectbox-java/src/main/java/io/objectbox/internal/Feature.java
@@ -11,7 +11,7 @@ public enum Feature {
11
/** TimeSeries support (date/date-nano companion ID and other time-series functionality). */
12
TIME_SERIES(2),
13
14
- /** Sync client availability. Visit https://objectbox.io/sync for more details. */
+ /** Sync client availability. Visit <a href="https://objectbox.io/sync">the ObjectBox Sync website</a> for more details. */
15
SYNC(3),
16
17
/** Check whether debug log can be enabled during runtime. */
@@ -26,7 +26,7 @@ public enum Feature {
26
/** Embedded Sync server availability. */
27
SYNC_SERVER(7);
28
29
- public int id;
+ public final int id;
30
31
Feature(int id) {
32
this.id = id;
0 commit comments