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(
13651365 val boundResults = useType(arg.type, TypeContext .GENERIC_ARGUMENT )
13661366 val boundLabel = boundResults.javaResult.id.cast<DbReftype >()
13671367
1368- return if (arg.variance == Variance .INVARIANT )
1368+ if (arg.variance == Variance .INVARIANT )
13691369 boundResults.javaResult.cast<DbReftype >().forgetSignature()
13701370 else {
13711371 val keyPrefix = if (arg.variance == Variance .IN_VARIANCE ) " super" else " extends"
@@ -1379,7 +1379,7 @@ open class KotlinUsesExtractor(
13791379 }
13801380 else -> {
13811381 logger.error(" Unexpected type argument." )
1382- return extractJavaErrorType().forgetSignature()
1382+ extractJavaErrorType().forgetSignature()
13831383 }
13841384 }
13851385 }
You can’t perform that action at this time.
0 commit comments