forked from JavaTX/JavaCompilerCore
Bugfix
This commit is contained in:
parent
01fd396d29
commit
55be865ab4
@ -16,7 +16,7 @@ public class ResultSet {
|
|||||||
public ResolvedType resolveType(RefTypeOrTPHOrWildcardOrGeneric type) {
|
public ResolvedType resolveType(RefTypeOrTPHOrWildcardOrGeneric type) {
|
||||||
if(type instanceof TypePlaceholder)
|
if(type instanceof TypePlaceholder)
|
||||||
return new Resolver(this).resolve((TypePlaceholder)type);
|
return new Resolver(this).resolve((TypePlaceholder)type);
|
||||||
if(type instanceof GenericRefType)new ResolvedType(type, new HashSet<>());
|
if(type instanceof GenericRefType)return new ResolvedType(type, new HashSet<>());
|
||||||
if(type instanceof RefType){
|
if(type instanceof RefType){
|
||||||
RelatedTypeWalker related = new RelatedTypeWalker(null, this);
|
RelatedTypeWalker related = new RelatedTypeWalker(null, this);
|
||||||
type.accept(related);
|
type.accept(related);
|
||||||
|
Loading…
Reference in New Issue
Block a user