Converter:

Place function type parameters before function name
This commit is contained in:
Pavel V. Talanov
2013-11-25 20:07:57 +04:00
parent f912c0bc65
commit ea6b751645
17 changed files with 39 additions and 39 deletions
@@ -1,2 +1,2 @@
fun putU<U>(u : U) {
fun <U> putU(u : U) {
}
@@ -1,2 +1,2 @@
fun putU<U>(u : U?) {
fun <U> putU(u : U?) {
}
@@ -1,2 +1,2 @@
fun putUVW<U, V, W>(u : U, v : V, w : W) {
fun <U, V, W> putUVW(u : U, v : V, w : W) {
}
@@ -1,2 +1,2 @@
fun putUVW<U, V, W>(u : U?, v : V?, w : W?) {
fun <U, V, W> putUVW(u : U?, v : V?, w : W?) {
}