method ref: hide spaces around dbl colon by default

This commit is contained in:
anna
2012-09-27 12:26:00 +02:00
parent 9a237f0b59
commit 6e0e9009df
3 changed files with 3 additions and 3 deletions
@@ -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;