Migrate project to Gradle
* Upgrade all the dependencies to the latest versions * Fix some incompatibilities * Fix some warnings
This commit is contained in:
@@ -33,7 +33,7 @@ abstract class KeyValueListParser {
|
||||
static Map<String, String> parseCommaDelimitedKeyValuePairs(String value) {
|
||||
Map<String, String> keyValuePairs = new HashMap<>();
|
||||
|
||||
if (StringUtils.isEmpty(value)) {
|
||||
if (!StringUtils.hasText(value)) {
|
||||
return keyValuePairs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user