Skip to content

Commit 179d727

Browse files
committed
clean up
1 parent 2b2b36f commit 179d727

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/uid2/core/util/MetadataHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public static String getMetadataPathName(OperatorType operatorType, int siteId,
3636
StoreScope store;
3737
Boolean providePrivateSiteData = ConfigStore.Global.getBoolean("provide_private_site_data");
3838
if (supportsDecryption) { // Check if decryption is possible
39-
if (operatorType == OperatorType.PUBLIC || (providePrivateSiteData == null || !providePrivateSiteData.booleanValue()))//siteId_public folder
40-
{
39+
if (operatorType == OperatorType.PUBLIC || (providePrivateSiteData == null || !providePrivateSiteData.booleanValue())) //siteId_public folder
40+
{
4141
store = new EncryptedScope(new CloudPath(metadataPathName), siteId, true);
4242
} else //siteId_private folder
4343
{

0 commit comments

Comments
 (0)