mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +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() {}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
{
|
||||
foo ( ba<caret> )
|
||||
}
|
||||
|
||||
void foo(int x) {}
|
||||
int bar(int x) {}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
{
|
||||
foo ( bar ( <caret> ) )
|
||||
}
|
||||
|
||||
void foo(int x) {}
|
||||
int bar(int x) {}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
{
|
||||
foo ( bar ()<caret> )
|
||||
}
|
||||
|
||||
void foo(int x) {}
|
||||
int bar() {}
|
||||
}
|
||||
Reference in New Issue
Block a user