修复因为版本升级造成的编译错误。

This commit is contained in:
wusheng 2016-08-01 10:38:39 +08:00
parent dc197355ee
commit fea63c4405
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ public class SkyWalkingEnhanceMatcher<T extends NamedElement> extends AbstractJu
@Override
public boolean matches(T target) {
return pluginDefineCategory.findPluginDefine(target.getSourceCodeName()) != null ? true : false;
return pluginDefineCategory.findPluginDefine(target.getActualName()) != null ? true : false;
}
}