Refactored ReplaceWithTraditionalAssignmentIntention

This commit is contained in:
Valentin Kipyatkov
2015-04-29 19:32:05 +03:00
parent 475a361b32
commit 8fc799322b
3 changed files with 15 additions and 31 deletions
@@ -2,5 +2,5 @@ fun foo() {
var x = 0
val a = 1
val b = 1
x = x + (a / b)
x = x + a / b
}