mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
method ref: hide spaces around dbl colon by default
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
class Test {
|
||||
{
|
||||
((Bar) Test :: length)._("");
|
||||
((Bar) Test::length)._("");
|
||||
}
|
||||
|
||||
public static Integer length(String s) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class Test {
|
||||
{
|
||||
Bar c = Test :: length;
|
||||
Bar c = Test::length;
|
||||
bar(c);
|
||||
}
|
||||
|
||||
|
||||
@@ -525,7 +525,7 @@ public class CommonCodeStyleSettings {
|
||||
public boolean SPACE_AROUND_UNARY_OPERATOR = false;
|
||||
|
||||
public boolean SPACE_AROUND_LAMBDA_ARROW = true;
|
||||
public boolean SPACE_AROUND_METHOD_REF_DBL_COLON = true;
|
||||
public boolean SPACE_AROUND_METHOD_REF_DBL_COLON = false;
|
||||
|
||||
public boolean SPACE_AFTER_COMMA = true;
|
||||
public boolean SPACE_AFTER_COMMA_IN_TYPE_ARGUMENTS = true;
|
||||
|
||||
Reference in New Issue
Block a user