mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-07 22:03:39 +07:00
ConstantExpressionInspection: make it working inside parentheses
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
// "Replace '"a" + "b"' with constant value '"ab"'" "true"
|
||||
class Test {
|
||||
String x = ("ab");
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// "Replace '"a" + "b"' with constant value '"ab"'" "true"
|
||||
class Test {
|
||||
String x = ("a" + <caret>"b");
|
||||
}
|
||||
Reference in New Issue
Block a user