Skip to content

Commit caa9a92

Browse files
committed
clean up
1 parent defb64c commit caa9a92

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/main/java/com/uid2/operator/Main.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,11 @@ public Main(Vertx vertx, JsonObject config) throws Exception {
188188
String saltsMdPath = this.config.getString(Const.Config.SaltsMetadataPathProp);
189189
this.saltProvider = new RotatingSaltProvider(fsStores, saltsMdPath);
190190
String sitesMdPath = this.config.getString(Const.Config.SitesMetadataPathProp);
191-
this.siteProvider = clientSideTokenGenerate
192-
? new RotatingSiteStore(fsStores, new GlobalScope(new CloudPath(sitesMdPath)))
193-
: null;
191+
this.siteProvider = clientSideTokenGenerate ? new RotatingSiteStore(fsStores, new GlobalScope(new CloudPath(sitesMdPath))) : null;
194192
}
195193

196194
this.optOutStore = new CloudSyncOptOutStore(vertx, fsLocal, this.config, operatorKey, Clock.systemUTC());
197-
195+
198196
if (useRemoteConfig) {
199197
String configMdPath = this.config.getString(Const.Config.RuntimeConfigMetadataPathProp);
200198
this.configStore = new RuntimeConfigStore(fsStores, configMdPath);

0 commit comments

Comments
 (0)