Remove comments from function/property implementation template
#KT-18539 Fixed
This commit is contained in:
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -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")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user