mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
[rev=nik] fix incorrect parentheses insertion when code style dictates spaces before & inside call parens (IDEA-49942)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
{
|
||||
foo ( ba<caret> )
|
||||
}
|
||||
|
||||
void foo(int x) {}
|
||||
int bar() {}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
{
|
||||
foo ( ba<caret> )
|
||||
}
|
||||
|
||||
void foo(int x) {}
|
||||
int bar(int x) {}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
{
|
||||
foo ( bar ( <caret> ) )
|
||||
}
|
||||
|
||||
void foo(int x) {}
|
||||
int bar(int x) {}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
{
|
||||
foo ( bar ()<caret> )
|
||||
}
|
||||
|
||||
void foo(int x) {}
|
||||
int bar() {}
|
||||
}
|
||||
Reference in New Issue
Block a user