Skip to content

Commit defb64c

Browse files
committed
clean up
1 parent 93638eb commit defb64c

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

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

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -174,18 +174,15 @@ public Main(Vertx vertx, JsonObject config) throws Exception {
174174
String sitesMdPath = this.config.getString(Const.Config.SitesMetadataPathProp);
175175
this.siteProvider = clientSideTokenGenerate
176176
? new RotatingSiteStore(fsStores, new GlobalScope(new CloudPath(sitesMdPath)),
177-
cloudEncryptionKeyProvider)
177+
cloudEncryptionKeyProvider)
178178
: null;
179179
} else {
180180
String keypairMdPath = this.config.getString(Const.Config.ClientSideKeypairsMetadataPathProp);
181-
this.clientSideKeypairProvider = new RotatingClientSideKeypairStore(fsStores,
182-
new GlobalScope(new CloudPath(keypairMdPath)));
181+
this.clientSideKeypairProvider = new RotatingClientSideKeypairStore(fsStores, new GlobalScope(new CloudPath(keypairMdPath)));
183182
String clientsMdPath = this.config.getString(Const.Config.ClientsMetadataPathProp);
184-
this.clientKeyProvider = new RotatingClientKeyProvider(fsStores,
185-
new GlobalScope(new CloudPath(clientsMdPath)));
183+
this.clientKeyProvider = new RotatingClientKeyProvider(fsStores, new GlobalScope(new CloudPath(clientsMdPath)));
186184
String keysetKeysMdPath = this.config.getString(Const.Config.KeysetKeysMetadataPathProp);
187-
this.keysetKeyStore = new RotatingKeysetKeyStore(fsStores,
188-
new GlobalScope(new CloudPath(keysetKeysMdPath)));
185+
this.keysetKeyStore = new RotatingKeysetKeyStore(fsStores, new GlobalScope(new CloudPath(keysetKeysMdPath)));
189186
String keysetMdPath = this.config.getString(Const.Config.KeysetsMetadataPathProp);
190187
this.keysetProvider = new RotatingKeysetProvider(fsStores, new GlobalScope(new CloudPath(keysetMdPath)));
191188
String saltsMdPath = this.config.getString(Const.Config.SaltsMetadataPathProp);

0 commit comments

Comments
 (0)