mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 21:44:49 +07:00
Options: Place new line after '(' and "Place line before ')' works only if parameter list is wrapped.
This commit is contained in:
+6
-7
@@ -4,12 +4,11 @@ public class Test {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
run(
|
||||
new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
<caret>
|
||||
}
|
||||
});
|
||||
run(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
<caret>
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
+6
-8
@@ -4,13 +4,11 @@ public class Test {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
run(
|
||||
123, new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
);
|
||||
run(123, new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
<caret>
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user