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
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
infix fun foo(t: T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun compareTo(t: T): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun contains(t: T): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun compareTo(t: T): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun contains(t: T): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun plusAssign(t: T) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -3,7 +3,7 @@
class A<T>(val n: T) {
operator fun unaryPlus(): A<T> = throw Exception()
operator fun plus(t: T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun plus(t: T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -3,7 +3,7 @@
class A<T>(val n: T) {
fun plus(i: Int, s: String): A<T> = throw Exception()
operator fun plus(t: T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -9,5 +9,5 @@ fun test() {
}
private operator fun Int.plus(a: A<Int>): A<Int> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun plus(t: T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun plus(i: Int): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,5 +6,5 @@ fun test() {
}
private infix fun Int.`!u00A0`(i: Int): Int {
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.times(s: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun contains(t: T): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
operator fun contains(t: T): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -8,5 +8,5 @@ fun main(args: Array<String>) {
}
private fun <E> List<E>.foo(function: () -> A) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -10,5 +10,5 @@ fun main(args: Array<String>) {
}
private fun <E> List<E>.foo(function: () -> A) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -6,5 +6,5 @@ fun test() {
}
fun foo(n: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -5,5 +5,5 @@ fun test() {
}
fun foo(): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -10,5 +10,5 @@ fun main(args: Array<String>) {
}
fun checkProperty(kClass: KClass<out String>) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
fun foo(t: T, s: String, function: (T) -> T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
fun foo(function: (T) -> T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,6 +5,6 @@ fun isModified(settings: Settings, c: C) = c.foo(settings)
class C {
fun foo(settings: Settings): Any {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -10,5 +10,5 @@ fun A.test() {
}
private fun A.foo(n: Int): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -13,5 +13,5 @@ fun test() {
}
private fun A.foo(n: Int): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -1,6 +1,6 @@
private val A.foo: Boolean
get() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
// "Create extension property 'A.foo'" "true"
@@ -1,6 +1,6 @@
private var A.foo: Boolean
get() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
set() {}
@@ -6,5 +6,5 @@ fun test(): Int {
}
private fun A.foo(): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -6,5 +6,5 @@ fun test(): Int? {
}
private fun A.foo(i: Int, s: String): Int? {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -7,5 +7,5 @@ fun test(t: T) {
}
private fun T.foo(s: String, i: Int): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -11,5 +11,5 @@ class X {
}
private fun package2.A.foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -3,7 +3,7 @@
class A<T>(val n: T) {
fun foo(a: Int): A<T> = throw Exception()
fun foo(a: T, s: String): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,6 +5,6 @@ class C {
}
private fun g() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,6 +5,6 @@ class C {
}
private fun g() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,6 +5,6 @@ class C {
}
protected fun g() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,6 +5,6 @@ class C {
}
fun g() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -3,7 +3,7 @@
class A<T>(val n: T) {
fun foo(i: Int, s: String): A<T> = throw Exception()
fun foo(i: T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -3,7 +3,7 @@
class A<T>(val n: T) {
companion object {
fun foo(i: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -7,6 +7,6 @@ enum class Bar {
BAZ;
fun foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -7,6 +7,6 @@ enum class Bar {
BAZ;
fun foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,5 +6,5 @@ fun test() {
}
private fun Unit.foo(i: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -9,5 +9,5 @@ fun test() {
}
private fun Int.foo(a: A<Int>): A<Int> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -2,7 +2,7 @@
interface T {
fun foo(s: String, i: Int): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
object A {
fun foo(i: Int): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
fun foo(t: T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,7 +5,7 @@ class F {
}
fun foo(i: Int, s: String): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
fun foo(u: T): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -8,7 +8,7 @@ class A {
}
private fun foo(): A {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
fun bar() {
@@ -3,7 +3,7 @@
class A<T>(val n: T) {
fun foo(abc: T, ghi: A<T>, def: String): A<T> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
fun foo(t: T?): A<Int> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
fun foo(t: T): A<T>? {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
fun foo(t: T): A<String> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -7,5 +7,5 @@ fun test() {
}
fun foo(i: Int, s: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -5,5 +5,5 @@ fun foo(block: (Int) -> String) {
}
fun bar(block: (Int) -> String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -5,5 +5,5 @@ fun foo(block: (Int) -> String) {
}
private fun <P1, R> ((P1) -> R).bar() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -9,5 +9,5 @@ fun foo(l: A<String>): A<Int> {
}
fun bar(it: String): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -10,5 +10,5 @@ fun foo(l: A<String>): A<Int> {
}
fun bar(it: String): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -8,5 +8,5 @@ fun test() {
}
fun foo(): Any {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -10,5 +10,5 @@ fun foo(l: A<String>): A<Int> {
}
fun bar(it: String): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -3,7 +3,7 @@
class A<T>(val n: T) {
fun foo(s: String, t: T): Any {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -4,5 +4,5 @@ fun bar() {
}
fun foo(): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -2,7 +2,7 @@
fun test() {
fun foo(i: Int, s: String): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
fun nestedTest(): Int {
@@ -7,7 +7,7 @@ class A {
}
private fun foo(i: Int, s: String): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
}
@@ -6,6 +6,6 @@ class A<T>(val t: T) {
val x: A<Int> by foo(t, "")
private fun foo(t: T, s: String): ReadOnlyProperty<A<T>, A<Int>> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ class A<T>(val t: T) {
var x: A<Int> by foo(t, "")
private fun foo(t: T, s: String): ReadWriteProperty<A<T>, A<Int>> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -4,5 +4,5 @@ fun context(p: String?) {
}
private fun String?.notExistingFun() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -7,7 +7,7 @@ class A {
}
private fun foo(i: Int, s: String): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
}
@@ -5,6 +5,6 @@ class A {
}
private fun foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A {
fun foo(): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -1,7 +1,7 @@
// "Create member function 'SomeObj.doSomething'" "true"
class SomeObj {
fun doSomething() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,5 +5,5 @@ fun test(o: Any) {
}
fun foo(o: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -6,5 +6,5 @@ fun test(s: String?) {
}
fun foo(s: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -5,6 +5,6 @@ fun isModified(setOptions: SetOptions, c: C) = c.foo(setOptions)
class C {
fun foo(options: SetOptions): Any {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -6,6 +6,6 @@ class A<T>(val n: T) {
}
private fun foo(i: Int, s: String): A<Int> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class A<T>(val n: T) {
fun foo(i: Int, s: String): A<Int> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -7,7 +7,7 @@ class A<T>(val n: T) {
}
private fun foo(i: Int, s: String): A<Int> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
}
@@ -8,6 +8,6 @@ class A<T>(val n: T) {
}
private fun foo(i: Int, s: String): A<Int> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,5 +5,5 @@ fun test(): Int {
}
fun foo(i: Int, s: String): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -7,7 +7,7 @@ fun test() {
}
fun foo(): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
fun bar() {
@@ -5,5 +5,5 @@ fun test(): Int {
}
fun <T> foo(i: Int, t: T): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -2,7 +2,7 @@
class B<T>(val t: T) {
fun <U, V> foo(u: U, v: V): U {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -1,7 +1,7 @@
// "Create member function 'T.bar'" "true"
open class X {
fun bar() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class B<T>(val t: T) {
fun <U> foo(i: Int, u: U): Int {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -2,7 +2,7 @@
class B<T>(val t: T) {
fun <U, V> foo(u: U, v: V): U {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -8,5 +8,5 @@ class A<T>(val items: List<T>) {
}
private fun <E, T, U> List<E>.foo(t: T, u: U): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -8,5 +8,5 @@ class A<T>(val items: List<T>) {
}
private fun <E, T> List<E>.foo(t: T, s: String): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -8,5 +8,5 @@ class A<T>(val items: List<T>) {
}
private fun <E, T, U> List<E>.foo(t: T, u: U): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -4,5 +4,5 @@ fun <T> foo(t: T) {
}
private fun <T> T.bar() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -5,5 +5,5 @@ fun test(): Int {
}
fun <T, U> foo(u: U, t: T): U {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -5,5 +5,5 @@ fun test(): Int {
}
fun <T, U, V> foo(u: U, t: T): U {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -5,5 +5,5 @@ fun test(): Int {
}
fun <T, U> foo(u: U, t: T): U {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -5,5 +5,5 @@ fun test(): Int {
}
fun <T> foo(t: T, s: String): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -5,5 +5,5 @@ fun test() {
}
fun foo(i: Int, s: String) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -3,7 +3,7 @@
class A<T>(val n: T) {
fun foo(s: Any, t: T): T {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -3,7 +3,7 @@
class A: B {
fun foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
}
@@ -5,7 +5,7 @@ fun consume(s: String) {}
fun test() {
fun foo(i: Int): String {
<selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection>TODO("Not yet implemented")</selection>
}
consume(1.map(::foo))
}
@@ -9,5 +9,5 @@ fun test() {
}
private fun Int.foo(): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}
@@ -3,7 +3,7 @@ fun <T, U> T.map(f: (T) -> U) = f(this)
fun test() {
fun foo(i: Int): Any {
<selection>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
<selection>TODO("Not yet implemented")</selection>
}
1.map(::foo)
}
@@ -9,5 +9,5 @@ fun test() {
}
private fun Int.foo(): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
TODO("Not yet implemented")
}

Some files were not shown because too many files have changed in this diff Show More