Skip to content

Commit ce97bab

Browse files
committed
Remove remaining requery references from SyncManager
1 parent 7e9a96e commit ce97bab

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

libpretixsync/src/main/java/eu/pretix/libpretixsync/sync/SyncManager.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
import eu.pretix.libpretixsync.SentryInterface;
3030
import eu.pretix.libpretixsync.config.ConfigStore;
3131
import eu.pretix.libpretixsync.db.Answer;
32-
import io.requery.BlockingEntityStore;
33-
import io.requery.Persistable;
3432

3533
public class SyncManager {
3634
public enum Profile {
@@ -42,7 +40,6 @@ public enum Profile {
4240
protected ConfigStore configStore;
4341
protected long upload_interval;
4442
protected long download_interval;
45-
protected BlockingEntityStore<Persistable> dataStore;
4643
protected SyncDatabase db;
4744
protected FileStorage fileStorage;
4845
protected Profile profile;
@@ -100,7 +97,6 @@ public SyncManager(
10097
ConfigStore configStore,
10198
PretixApi api,
10299
SentryInterface sentry,
103-
BlockingEntityStore<Persistable> dataStore,
104100
SyncDatabase db,
105101
FileStorage fileStorage,
106102
long upload_interval,
@@ -124,7 +120,6 @@ public SyncManager(
124120
this.sentry = sentry;
125121
this.upload_interval = upload_interval;
126122
this.download_interval = download_interval;
127-
this.dataStore = dataStore;
128123
this.db = db;
129124
this.fileStorage = fileStorage;
130125
this.profile = profile;

0 commit comments

Comments
 (0)