File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java/kotlin-extractor/src/main/kotlin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1365,7 +1365,7 @@ open class KotlinUsesExtractor(
1365
1365
val boundResults = useType(arg.type, TypeContext .GENERIC_ARGUMENT )
1366
1366
val boundLabel = boundResults.javaResult.id.cast<DbReftype >()
1367
1367
1368
- return if (arg.variance == Variance .INVARIANT )
1368
+ if (arg.variance == Variance .INVARIANT )
1369
1369
boundResults.javaResult.cast<DbReftype >().forgetSignature()
1370
1370
else {
1371
1371
val keyPrefix = if (arg.variance == Variance .IN_VARIANCE ) " super" else " extends"
@@ -1379,7 +1379,7 @@ open class KotlinUsesExtractor(
1379
1379
}
1380
1380
else -> {
1381
1381
logger.error(" Unexpected type argument." )
1382
- return extractJavaErrorType().forgetSignature()
1382
+ extractJavaErrorType().forgetSignature()
1383
1383
}
1384
1384
}
1385
1385
}
You can’t perform that action at this time.
0 commit comments