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 4cf5af1 commit 2235b16Copy full SHA for 2235b16
objectbox-java/src/main/java/io/objectbox/InternalAccess.java
@@ -16,6 +16,8 @@
16
17
package io.objectbox;
18
19
+import javax.annotation.Nullable;
20
+
21
import io.objectbox.annotation.apihint.Internal;
22
import io.objectbox.sync.SyncClient;
23
@@ -37,7 +39,7 @@ public static long getHandle(Transaction tx) {
37
39
return tx.internalHandle();
38
40
}
41
- public static void setSyncClient(BoxStore boxStore, SyncClient syncClient) {
42
+ public static void setSyncClient(BoxStore boxStore, @Nullable SyncClient syncClient) {
43
boxStore.setSyncClient(syncClient);
44
45
0 commit comments