Skip to content

Commit 0f1d357

Browse files
Sync: drop some experimental flags
1 parent 946d87c commit 0f1d357

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

objectbox-java/src/main/java/io/objectbox/sync/SyncBuilder.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2020 ObjectBox Ltd. All rights reserved.
2+
* Copyright 2019-2024 ObjectBox Ltd. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -21,7 +21,6 @@
2121
import javax.annotation.Nullable;
2222

2323
import io.objectbox.BoxStore;
24-
import io.objectbox.annotation.apihint.Experimental;
2524
import io.objectbox.sync.internal.Platform;
2625
import io.objectbox.sync.listener.SyncChangeListener;
2726
import io.objectbox.sync.listener.SyncCompletedListener;
@@ -34,7 +33,6 @@
3433
* A builder to create a {@link SyncClient}; the builder itself should be created via
3534
* {@link Sync#client(BoxStore, String, SyncCredentials)}.
3635
*/
37-
@Experimental
3836
@SuppressWarnings({"unused", "WeakerAccess"})
3937
public class SyncBuilder {
4038

objectbox-java/src/main/java/io/objectbox/sync/SyncClient.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2021 ObjectBox Ltd. All rights reserved.
2+
* Copyright 2019-2024 ObjectBox Ltd. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -38,7 +38,6 @@
3838
* SyncClient is thread-safe.
3939
*/
4040
@SuppressWarnings("unused")
41-
@Experimental
4241
public interface SyncClient extends Closeable {
4342

4443
/**

objectbox-java/src/main/java/io/objectbox/sync/server/SyncServer.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2020 ObjectBox Ltd. All rights reserved.
2+
* Copyright 2019-2024 ObjectBox Ltd. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,15 +20,13 @@
2020

2121
import javax.annotation.Nullable;
2222

23-
import io.objectbox.annotation.apihint.Experimental;
2423
import io.objectbox.sync.Sync;
2524
import io.objectbox.sync.listener.SyncChangeListener;
2625

2726
/**
2827
* ObjectBox sync server. Build a server with {@link Sync#server}.
2928
*/
3029
@SuppressWarnings("unused")
31-
@Experimental
3230
public interface SyncServer extends Closeable {
3331

3432
/**

objectbox-java/src/main/java/io/objectbox/sync/server/SyncServerBuilder.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import javax.annotation.Nullable;
2323

2424
import io.objectbox.BoxStore;
25-
import io.objectbox.annotation.apihint.Experimental;
2625
import io.objectbox.flatbuffers.FlatBufferBuilder;
2726
import io.objectbox.sync.Credentials;
2827
import io.objectbox.sync.Sync;
@@ -35,7 +34,6 @@
3534
* Creates a {@link SyncServer} and allows to set additional configuration.
3635
*/
3736
@SuppressWarnings({"unused", "UnusedReturnValue"})
38-
@Experimental
3937
public class SyncServerBuilder {
4038

4139
final BoxStore boxStore;

0 commit comments

Comments
 (0)