"Remove unnecessary parentheses" intention - smaller range & refactoring

This commit is contained in:
Valentin Kipyatkov
2015-04-28 16:45:02 +03:00
parent 444da656e6
commit c6b18efb15
6 changed files with 13 additions and 17 deletions
@@ -2,5 +2,5 @@ class C() {
fun get(i: Int) = i + 1
// KT-4513: Unnecessary parenthesis around 'this'
val foo = (th<caret>is)[41]
val foo = (this<caret>)[41]
}