Skip to content

Commit b1983aa

Browse files
Feature: resolve warnings.
1 parent c7d3e3e commit b1983aa

File tree

1 file changed

+2
-2
lines changed
  • objectbox-java/src/main/java/io/objectbox/internal

1 file changed

+2
-2
lines changed

objectbox-java/src/main/java/io/objectbox/internal/Feature.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public enum Feature {
1111
/** TimeSeries support (date/date-nano companion ID and other time-series functionality). */
1212
TIME_SERIES(2),
1313

14-
/** Sync client availability. Visit https://objectbox.io/sync for more details. */
14+
/** Sync client availability. Visit <a href="https://objectbox.io/sync">the ObjectBox Sync website</a> for more details. */
1515
SYNC(3),
1616

1717
/** Check whether debug log can be enabled during runtime. */
@@ -26,7 +26,7 @@ public enum Feature {
2626
/** Embedded Sync server availability. */
2727
SYNC_SERVER(7);
2828

29-
public int id;
29+
public final int id;
3030

3131
Feature(int id) {
3232
this.id = id;

0 commit comments

Comments
 (0)