Reset some comments.

This commit is contained in:
wusheng 2017-08-10 20:49:22 +08:00 committed by ascrutae
parent e0442497c0
commit f5d5cd3b9b
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ public abstract class AbstractClassEnhancePluginDefine {
logger.debug("prepare to enhance class {} by {}.", transformClassName, interceptorDefineClassName);
/**
* findOrPrepare4Register witness classes for enhance class
* find witness classes for enhance class
*/
String[] witnessClasses = witnessClasses();
if (witnessClasses != null) {
@ -51,7 +51,7 @@ public abstract class AbstractClassEnhancePluginDefine {
}
/**
* findOrPrepare4Register origin class source code for interceptor
* find origin class source code for interceptor
*/
DynamicType.Builder<?> newClassBuilder = this.enhance(transformClassName, builder, classLoader);

View File

@ -16,7 +16,7 @@ import static net.bytebuddy.matcher.ElementMatchers.isInterface;
import static net.bytebuddy.matcher.ElementMatchers.not;
/**
* The <code>PluginFinder</code> represents a finder , which assist to findOrPrepare4Register the one
* The <code>PluginFinder</code> represents a finder , which assist to find the one
* from the given {@link AbstractClassEnhancePluginDefine} list.
*
* @author wusheng