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
@@ -8,6 +8,6 @@ enum class E : T<Int> {
A, B, C;
override fun foo(x: Int): Int {
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<caret><selection>TODO("Not yet implemented")</selection>
}
}
@@ -8,6 +8,6 @@ enum class E : T<Int> {
A, B, C;
override fun foo(x: Int): Int {
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<caret><selection>TODO("Not yet implemented")</selection>
}
}
@@ -11,6 +11,6 @@ enum class E : T<Int> {
fun baz() = 2
override fun foo(x: Int): Int {
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<caret><selection>TODO("Not yet implemented")</selection>
}
}
@@ -3,15 +3,15 @@
enum class E {
A {
override fun foo(x: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}, B {
override fun foo(x: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}, C {
override fun foo(x: Int): Int {
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<caret><selection>TODO("Not yet implemented")</selection>
}
};
@@ -3,15 +3,15 @@
enum class E(n: Int) {
A(1) {
override fun foo(x: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}, B(2) {
override fun foo(x: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}, C(3) {
override fun foo(x: Int): Int {
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<caret><selection>TODO("Not yet implemented")</selection>
}
};
@@ -6,14 +6,14 @@ interface T<X> {
class U : T<String> {
override fun foo(x: String): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
class V : T<Int> {
override fun foo(x: Int): Int {
<caret><selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<caret><selection>TODO("Not yet implemented")</selection>
}
}