Remove comments from function/property implementation template

#KT-18539 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-08-07 18:55:44 +09:00
parent 9a55f418fa
commit 4d9b19da82
291 changed files with 399 additions and 399 deletions
@@ -6,6 +6,6 @@ class Foo<T> {
}
private operator fun get(s: String): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ class Foo<T> {
}
private operator fun get(s: String, w: T): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class Foo<T> {
operator fun get(s: String, w: T): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class Foo<T> {
operator fun get(s: String, w: T): Any {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -10,6 +10,6 @@ class Foo<T> {
}
private operator fun <V> get(s: String, w: ArrayList<V>): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,5 +6,5 @@ fun x (y: Any) {
}
private operator fun Any.get(s: String): Any {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -6,6 +6,6 @@ class Foo<T> {
}
private operator fun get(s: String): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ class Foo<T, S: Iterable<T>> {
}
private operator fun get(s: String): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ class Foo<T> {
}
private operator fun <V> get(s: String, w: Iterable<V>): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -8,6 +8,6 @@ class Foo<T> {
}
private operator fun <V, T1> get(s: String, w: ArrayList<V>, v: T1): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -8,6 +8,6 @@ class Foo<T> {
}
private operator fun get(s: String, w: T): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -8,6 +8,6 @@ class Foo<S> {
}
private operator fun get(s: String, w: S): S {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -8,5 +8,5 @@ fun test() {
}
private operator fun A.get(s: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}