Skip to content

Commit de3371f

Browse files
committed
refac: keeping validation checks in core
1 parent 6e0a59e commit de3371f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Adjust/plugins/sdk-plugin-webbridge/src/main/java/com/adjust/sdk/webbridge/AdjustBridgeInstance.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -382,11 +382,9 @@ public boolean launchReceivedDeeplink(Uri deeplink) {
382382
// store info
383383
String storeName = AdjustBridgeUtil.fieldToString(storeInfoNameField);
384384
String storeAppId = AdjustBridgeUtil.fieldToString(storeInfoAppIdField);
385-
if (storeName != null) {
386-
AdjustStoreInfo adjustStoreInfo = new AdjustStoreInfo(storeName);
387-
adjustStoreInfo.setStoreAppId(storeAppId);
388-
adjustConfig.setStoreInfo(adjustStoreInfo);
389-
}
385+
AdjustStoreInfo adjustStoreInfo = new AdjustStoreInfo(storeName);
386+
adjustStoreInfo.setStoreAppId(storeAppId);
387+
adjustConfig.setStoreInfo(adjustStoreInfo);
390388

391389
Adjust.initSdk(adjustConfig);
392390

0 commit comments

Comments
 (0)