src/main/java/org/starrier/common/utils/StringUtils.java
Showing 1 of 1 total issue
Method isBlank
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
public static boolean isBlank(CharSequence cs) { int strLen = length(cs); if (strLen == 0) { return true; } else {
- Read upRead up