IDEA-83580 Unnecessary parentheses around call qualifier

This commit is contained in:
peter
2012-03-27 20:30:59 +02:00
parent a38dd4ab7d
commit 14893c2f39
4 changed files with 17 additions and 1 deletions
@@ -0,0 +1,6 @@
public class Foo {
String getString() {}
{
getS.subse<caret>
}
}
@@ -0,0 +1,6 @@
public class Foo {
String getString() {}
{
getString().subSequence(<caret>)
}
}