mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
6 lines
160 B
Java
6 lines
160 B
Java
// "Fix all 'Redundant 'String' operation' problems in file" "true"
|
|
class X {
|
|
void x(String message) {
|
|
boolean underline = message.charAt(1) == '_';
|
|
}
|
|
} |