Expand warning message to note that there are known Java extractor bugs relating to this query

This commit is contained in:
Chris Smowton
2022-05-19 13:37:18 +01:00
parent e722c99218
commit 4f08981586

View File

@@ -49,4 +49,4 @@ TypeVariable getATypeVariableInScope(RefType type) {
from ClassOrInterface typeUser, TypeVariable outOfScope
where
outOfScope = getATypeUsedInClass(typeUser) and not outOfScope = getATypeVariableInScope(typeUser)
select "Type " + typeUser + " uses out-of-scope type variable " + outOfScope
select "Type " + typeUser + " uses out-of-scope type variable " + outOfScope + ". Note the Java extractor is known to sometimes do this; the Kotlin extractor should not."