Skip to content

Commit

Permalink
remove unnecessary space (apache#5890)
Browse files Browse the repository at this point in the history
  • Loading branch information
kexianjun authored Mar 19, 2020
1 parent d55f062 commit 84bc261
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ public void checkStubAndLocal(Class<?> interfaceClass) {

public void verifyStubAndLocal(String className, String label, Class<?> interfaceClass){
if (ConfigUtils.isNotEmpty(className)) {
Class<?> localClass = ConfigUtils.isDefault(className) ?
ReflectUtils.forName(interfaceClass.getName() + label) : ReflectUtils.forName(className);
Class<?> localClass = ConfigUtils.isDefault(className) ?
ReflectUtils.forName(interfaceClass.getName() + label) : ReflectUtils.forName(className);
verify(interfaceClass, localClass);
}
}
Expand Down

0 comments on commit 84bc261

Please sign in to comment.