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
113 B
Java
10 lines
113 B
Java
class StringThatNeedsEscaping {
|
|
|
|
void x() {
|
|
System.out.println("quote\"");
|
|
}
|
|
|
|
void y() {
|
|
x();
|
|
}
|
|
} |