Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4cf88e1

Browse files
committed
Kotlin: Remove some comments
These are now in Kotlin #38
1 parent c62ad4b commit 4cf88e1

1 file changed

Lines changed: 0 additions & 19 deletions

File tree

java/kotlin-extractor/src/main/kotlin/KotlinUsesExtractor.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -486,25 +486,6 @@ XXX delete?
486486
primitiveInfo.javaClass,
487487
primitiveInfo.kotlinPackageName, primitiveInfo.kotlinClassName
488488
)
489-
/*
490-
TODO: Test case: nullable and has-question-mark type variables:
491-
class X {
492-
fun <T : Int> f1(t: T?) {
493-
f1(null)
494-
}
495-
496-
fun <T : Int?> f2(t: T) {
497-
f2(null)
498-
}
499-
}
500-
501-
TODO: Test case: This breaks kotlinc codegen currently, but up to IR is OK, so we can still have it in a qltest
502-
class X {
503-
fun <T : Int> f1(t: T?) {
504-
f1(null)
505-
}
506-
}
507-
*/
508489

509490
(s.isBoxedArray && s.arguments.isNotEmpty()) || s.isPrimitiveArray() -> {
510491
var dimensions = 1

0 commit comments

Comments
 (0)