mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 1fedec592b56b558cd3c6e6ba4348fed7284e5ca
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;
|
|
}
|
|
}
|