More correct code transformations: do not perform formatter's job on yourself

This commit is contained in:
Valentin Kipyatkov
2014-01-23 16:57:56 +04:00
parent ab7d8a7734
commit 3028cec4cd
10 changed files with 58 additions and 22 deletions
@@ -2,7 +2,7 @@
import java.util.HashMap
fun foo(map : HashMap<String, Int>) {
for (entry : MutableMap.MutableEntry<String, Int><caret> in map.entrySet()) {
for (entry: MutableMap.MutableEntry<String, Int><caret> in map.entrySet()) {
}
}