mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Java: Trim surrounding whitespaces because they don't survive in the refactoring - test data fixed (IDEA-191738)
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@ class Node {
|
||||
|
||||
String foo(Node left, Node right) {
|
||||
String leftType = left.getType().substring(1);
|
||||
<selection> String rightType = right.getType().substring(1);
|
||||
<selection> String rightType = right.getType().substring(1); //line comment
|
||||
</selection>
|
||||
String type = "A".substring(1);
|
||||
return leftType + rightType + type;
|
||||
|
||||
Reference in New Issue
Block a user