Java to Kotlin converter: do not generate redundant parenthesis for empty constructor parameters
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
package demo
|
||||
|
||||
class Map() {
|
||||
class Map {
|
||||
fun <K, V> put(k: K, v: V) {
|
||||
}
|
||||
}
|
||||
|
||||
class U() {
|
||||
class U {
|
||||
fun test() {
|
||||
val m = Map()
|
||||
m.put<String, Int>("10", 10)
|
||||
|
||||
Reference in New Issue
Block a user