add space between property type parameter list and property name

This commit is contained in:
Dmitry Jemerov
2015-10-06 16:20:30 +02:00
parent 1fdf08bec5
commit 4b92bd100c
4 changed files with 13 additions and 0 deletions
@@ -0,0 +1,4 @@
val <T> foo: T?
get() {
return null
}
+2
View File
@@ -0,0 +1,2 @@
val <T>foo: T?
get() { return null}