Converter:
Place function type parameters before function name
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
fun putU<U>(u : U?) {
|
||||
fun <U> putU(u : U?) {
|
||||
}
|
||||
Reference in New Issue
Block a user
Place function type parameters before function name
@@ -1,2 +1,2 @@
|
||||
fun putU<U>(u : U?) {
|
||||
fun <U> putU(u : U?) {
|
||||
}
|
||||