Skip to content

Commit f449590

Browse files
authored
Merge pull request #21 from MobileID-Strong-Authentication/codex/fix-typo-in-geofencingadditionalservice.java
Fix issue #19 - whitelist check in geofencing service
2 parents 332586d + fc82f30 commit f449590

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mid-java-client-core/src/main/java/ch/swisscom/mid/client/model/GeofencingAdditionalService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void setMaxAccuracyMeters(String maxAccuracyMeters) {
8888

8989

9090
public boolean isDefined() {
91-
if(countryWhiteList!=null && !countryBlackList.isEmpty()) return true;
91+
if (countryWhiteList != null && !countryWhiteList.isEmpty()) return true;
9292
if(countryBlackList!=null && !countryBlackList.isEmpty()) return true;
9393
if (minDeviceConfidence != null && !minDeviceConfidence.isEmpty() && !minDeviceConfidence.equalsIgnoreCase("0")) return true;
9494
if (minLocationConfidence != null && !minLocationConfidence.isEmpty() && !minLocationConfidence.equalsIgnoreCase("0")) return true;

0 commit comments

Comments
 (0)