You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by ke...@apache.org on 2020/03/19 13:46:10 UTC

[dubbo] branch master updated: remove unnecessary space (#5890)

This is an automated email from the ASF dual-hosted git repository.

kexianjun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new 84bc261  remove unnecessary space (#5890)
84bc261 is described below

commit 84bc2616a5c6be6542ab5bb564c51f876d24bdb1
Author: kexianjun <ke...@hotmail.com>
AuthorDate: Thu Mar 19 21:46:00 2020 +0800

    remove unnecessary space (#5890)
---
 .../main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dubbo-common/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java b/dubbo-common/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java
index 46eca04..82b5636 100644
--- a/dubbo-common/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java
+++ b/dubbo-common/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java
@@ -249,8 +249,8 @@ public abstract class AbstractInterfaceConfig extends AbstractMethodConfig {
     
     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);
             }
     }