mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Works for unary operation Do not suggested if replacement is the same as the original code Replacement is displayed in the quick-fix name
11 lines
615 B
Java
11 lines
615 B
Java
// "Fix all 'Constant expression can be evaluated' problems in file" "false"
|
|
class Test {
|
|
void test() {
|
|
// Do not suggest to compute for performance reasons
|
|
String foo = "The quick brown fox jumps " + 10<caret>0000 + "times" + "over the lazy dog"+
|
|
"The quick brown fox jumps " + 100000 + "times" + "over the lazy dog"+
|
|
"The quick brown fox jumps " + 100000 + "times" + "over the lazy dog"+
|
|
"The quick brown fox jumps " + 100000 + "times" + "over the lazy dog"+
|
|
"The quick brown fox jumps " + 100000 + "times" + "over the lazy dog";
|
|
}
|
|
} |