Formatter: remove unnecessary spaces in value and type parameter lists

This commit is contained in:
Nikolay Krasko
2012-09-17 13:09:49 +04:00
parent e29182b2fb
commit ab1095a84e
4 changed files with 25 additions and 0 deletions
@@ -0,0 +1,6 @@
fun < T > test( a: Int ) = {( a: Int ) -> a }
class Test< T >
fun foo( ) {
test< Int >( 12 )
}
@@ -0,0 +1,6 @@
fun <T> test(a: Int) = {(a: Int) -> a }
class Test<T>
fun foo() {
test<Int>(12)
}