mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
IDEA-140452 Complete-statement insert closing parenthesis at wrong place
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
class Main {
|
||||
public void test() {
|
||||
Path path = Paths.get("/tmp");
|
||||
foo(getf<caret>path, 5);
|
||||
}
|
||||
|
||||
private String getFileName(Path path) { return path.toString(); }
|
||||
private void foo(String text, int count) {}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
class Main {
|
||||
public void test() {
|
||||
Path path = Paths.get("/tmp");
|
||||
foo(getFileName(path), 5);<caret>
|
||||
}
|
||||
|
||||
private String getFileName(Path path) { return path.toString(); }
|
||||
private void foo(String text, int count) {}
|
||||
}
|
||||
Reference in New Issue
Block a user