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 @@ import org.junit.runners.Parameterized
class A {
@Parameterized.Parameters
fun data(): Collection<Array<Any>> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ import org.junit.Before
class A {
@Before
fun setUp() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ import org.junit.After
class A {
@After
fun tearDown() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ import org.junit.Test
class A {
@Test
fun name() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -4,6 +4,6 @@ import junit.framework.TestCase
class A : TestCase() {
fun testName() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ import org.testng.annotations.Test
@Test class A {
@DataProvider(name = "name")
fun name(): Array<Array<Any>> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ import org.testng.annotations.Test
@Test class A {
@BeforeMethod
fun setUp() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ import org.testng.annotations.Test
@Test class A {
@AfterMethod
fun tearDown() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,6 +5,6 @@ import org.testng.annotations.Test
@Test class A {
@Test
fun testName() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -8,6 +8,6 @@ interface U {
class C1 : T, U {
override fun getFoo(): String {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -11,6 +11,6 @@ class B : A() {
* @see TEST
*/
override fun foo() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -4,6 +4,6 @@ interface T {
class C : T {
override fun foo(a: Int) {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -5,7 +5,7 @@ interface T {
class C(t :T) : T by t {
override fun bar() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
override fun equals(other: Any?): Boolean {
@@ -13,7 +13,7 @@ class C(t :T) : T by t {
}
override fun foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun hashCode(): Int {
@@ -23,7 +23,7 @@ class C : B(), I {
}
override fun g() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun hashCode(): Int {
@@ -5,6 +5,6 @@ interface T {
class C : T {
override fun Foo(): (String) -> Unit {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -5,6 +5,6 @@ interface T {
class C : T {
override fun Foo(): (String) -> Unit {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -6,7 +6,7 @@ interface A {
fun some() : A {
return object : A {
override val method: () -> Unit?
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
get() = <selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -4,6 +4,6 @@ interface Trait {
class TraitImpl : Trait {
override fun <A, B : Runnable, E : Map.Entry<A, B>> foo() where B : Cloneable, B : Comparable<B> {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -8,14 +8,14 @@ interface Some<T> {
class SomeOther<S> : Some<S> {
override fun someFoo() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
override fun someGenericFoo(): S {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun someOtherFoo(): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -4,6 +4,6 @@ interface G<T> {
class GC() : G<Int> {
override fun foo(t: Int): Int {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -2,6 +2,6 @@
class MyClass<A: Comparable<A>> : Iterable<A> {
override fun iterator(): Iterator<A> {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -7,6 +7,6 @@ class A : Runnable {
}
override fun run() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -11,32 +11,32 @@ interface A {
class Test : A {
override fun a1() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
override fun a2() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a3() {
}
override fun a4() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a5() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a6() {
}
override fun a7() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a8() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -14,29 +14,29 @@ class Test : A {
}
override fun a7() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a8() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a1() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
override fun a2() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a3() {
}
override fun a4() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a5() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -14,28 +14,28 @@ class Test : A {
}
override fun a5() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a6() {
}
override fun a7() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a8() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a1() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
override fun a2() {
}
override fun a3() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -14,22 +14,22 @@ class Test : A {
}
override fun a1() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
override fun a2() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a3() {
}
override fun a4() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a5() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
fun bar() {
@@ -39,11 +39,11 @@ class Test : A {
}
override fun a7() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a8() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
fun baz() {
@@ -17,43 +17,43 @@ interface B {
class Test : A, B {
override fun a1() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
override fun a2() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a3() {
}
override fun a4() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a5() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun b3() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun b2() {
}
override fun b1() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a6() {
}
override fun a7() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun a8() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -1,5 +1,5 @@
class C : (String) -> Boolean {
override fun invoke(p1: String): Boolean {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -3,6 +3,6 @@ import foo.B
class C : A() {
override fun foo(x: MutableList<Any?>?, y: String?): B<*> {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -2,6 +2,6 @@ package foo
class Impl: B {
override fun foo(r: Runnable?) {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -2,6 +2,6 @@ import foo.Intf
class Impl(): Intf {
override fun getFooBar(): String {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -2,6 +2,6 @@ import foo.Intf
class Impl(): Intf {
override fun fooBar(i: Int, s: Array<out String>?, foo: Any?) {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -7,7 +7,7 @@ fun f() {
object : C<R>() {
override fun f(a: R) {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
}
@@ -8,7 +8,7 @@ interface B {
class C : A(), B {
override fun bar() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
override fun equals(other: Any?): Boolean {
@@ -4,6 +4,6 @@ interface IBase {
class C : IBase {
override fun foo(): Any? {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -4,6 +4,6 @@ interface A {
class B : A {
override fun String.foo() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -6,6 +6,6 @@ open class A {
class B: A() {
override fun Int.foo(): Int {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -4,5 +4,5 @@ interface A {
class B : A {
override val String.prop: Int
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
get() = <selection><caret>TODO("Not yet implemented")</selection>
}
@@ -4,6 +4,6 @@ interface A {
class B : A {
override var Int.foo: Double
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
get() = <selection><caret>TODO("Not yet implemented")</selection>
set(value) {}
}
@@ -11,19 +11,19 @@ interface T {
class C : T {
override val a1: Byte
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
get() = <selection><caret>TODO("Not yet implemented")</selection>
override val a2: Short
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
get() = TODO("Not yet implemented")
override val a3: Int
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
get() = TODO("Not yet implemented")
override val a4: Long
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
get() = TODO("Not yet implemented")
override val a5: Float
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
get() = TODO("Not yet implemented")
override val a6: Double
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
get() = TODO("Not yet implemented")
override val a7: Char
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
get() = TODO("Not yet implemented")
override val a8: Boolean
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
get() = TODO("Not yet implemented")
}
@@ -2,6 +2,6 @@ import foo.A
class B : A {
override fun foo(): MutableList<String> {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -20,6 +20,6 @@ class C : A(), I {
}
override fun z() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -4,5 +4,5 @@ interface T {
class GC() : T {
override val v: Int
get() = <selection><caret>TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.</selection>
get() = <selection><caret>TODO("Not yet implemented")</selection>
}
@@ -6,11 +6,11 @@ interface Test {
class SomeTest : Test {
val hello = 12
override fun test() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
override val testProp: Int
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
get() = TODO("Not yet implemented")
/**
* test
@@ -3,7 +3,7 @@ import lib.ArrayFactory
public class Impl : ArrayFactory {
override fun create(): lib.Array {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -6,6 +6,6 @@ interface Base {
class Derived : Base {
override fun foo(c: C<*>) {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -30,15 +30,15 @@ abstract class B : I2, A(), I3 {
}
override fun i() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun i1() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun i2() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
override fun toString(): String {
@@ -4,6 +4,6 @@ interface I {
class C : I {
override suspend fun foo() {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -4,6 +4,6 @@ interface G<T> {
class GC<T>() : G<T> {
override fun foo(t: T): T {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -4,6 +4,6 @@ interface Some {
class SomeOther : Some {
override fun foo(some: Int?): Int {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}
@@ -5,6 +5,6 @@ interface A<in TPipeline, out TBuilder : Any, TFeature : Any> {
class X : A<String, UnresolvedType, Unit> {
override fun install(pipeline: String, configure: UnresolvedType.() -> Unit) {
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection><caret>TODO("Not yet implemented")</selection>
}
}