Skip to content

Commit 6a7db82

Browse files
committed
Fix build failure due to spotbugs CRLF validation
1 parent 820ba3c commit 6a7db82

File tree

1 file changed

+1
-4
lines changed
  • financial-services-accelerator/components/org.wso2.financial.services.accelerator.identity.extensions/src/main/java/org/wso2/financial/services/accelerator/identity/extensions/util

1 file changed

+1
-4
lines changed

financial-services-accelerator/components/org.wso2.financial.services.accelerator.identity.extensions/src/main/java/org/wso2/financial/services/accelerator/identity/extensions/util/IdentityCommonUtils.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -378,10 +378,7 @@ public static boolean isRegulatoryApp(String clientId) throws FinancialServicesE
378378
identityCache.addToCache(identityCacheKey, regulatoryProperty);
379379
return Boolean.parseBoolean(regulatoryProperty.toString());
380380
} else {
381-
if (log.isDebugEnabled()) {
382-
log.debug("Regulatory property not found in service provider metadata for clientId: "
383-
+ clientId + ". Hence treating it as a non-regulatory application.");
384-
}
381+
log.debug("Regulatory property missing. Treating as non-regulatory application.");
385382
return false;
386383
}
387384
} else {

0 commit comments

Comments
 (0)