mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
for "Method parameter always has the same value" inspection GitOrigin-RevId: 114ab7d07d50298101555f3203b5161deea17816
10 lines
134 B
Java
10 lines
134 B
Java
class StringThatNeedsEscaping {
|
|
|
|
void x(String <caret>s) {
|
|
System.out.println(s);
|
|
}
|
|
|
|
void y() {
|
|
x("quote" + "\"");
|
|
}
|
|
} |