Files
2023-06-05 16:00:36 +00:00

8 lines
166 B
Java

// "Use 'isBlank()' and remove redundant 'strip()' call" "false"
class Test {
boolean validCase(String text) {
return text.<caret>strip().length() == 1;
}
}