Merge pull request #828 from ascrutae/feature/generic-type
[Agent] fix HierarchyMatch donot support generic type
This commit is contained in:
commit
e8477c0fdf
|
|
@ -85,7 +85,7 @@ public class HierarchyMatch implements IndirectMatch {
|
|||
}
|
||||
|
||||
private void matchHierarchyClass(TypeDescription.Generic clazz, List<String> parentTypes) {
|
||||
parentTypes.remove(clazz.getTypeName());
|
||||
parentTypes.remove(clazz.asRawType().getTypeName());
|
||||
if (parentTypes.size() == 0) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue