Files
Tagir Valeev b27935c747 [java-inspections] IDEA-285742 New inspection: replacement method has no effect
GitOrigin-RevId: 708af15324387475e434e2e0c87fe2d26ceac1ef
2021-12-28 06:23:36 +00:00

6 lines
141 B
Java

// "Fix all 'Replacement operation has no effect' problems in file" "false"
class X {
void test() {
"c".<caret>replace("$", "/");
}
}