mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-16 20:15:46 -06:00
Arquillian tests fails when running from Intellij Idea
closes #44713 Signed-off-by: mposolda <mposolda@gmail.com>
This commit is contained in:
@@ -90,7 +90,7 @@ public class JsonConfigProvider implements Config.ConfigProvider {
|
||||
|
||||
private String toString(JsonNode n) {
|
||||
String v = replaceProperties(n.textValue());
|
||||
return !v.isEmpty() ? v : null;
|
||||
return !StringUtil.isNullOrEmpty(v) ? v : null;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user