mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-18 02:07:02 +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
7 lines
291 B
Java
7 lines
291 B
Java
// "Compute constant value of '"The quick brown fox jumps " + 100000 + " times" + " over the lazy dog"'" "true"
|
|
class Test {
|
|
void test() {
|
|
// Do not display the result in action name
|
|
String foo = "The quick brown fox jumps " + 10<caret>0000 + " times" + " over the lazy dog";
|
|
}
|
|
} |