mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
8 lines
166 B
Java
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;
|
|
}
|
|
}
|