liaozan closed pull request #1762:  Remove unnecessary null check.
URL: https://github.com/apache/incubator-dubbo/pull/1762
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git 
a/dubbo-config/dubbo-config-spring/src/main/java/com/alibaba/dubbo/config/spring/AnnotationBean.java
 
b/dubbo-config/dubbo-config-spring/src/main/java/com/alibaba/dubbo/config/spring/AnnotationBean.java
index bbb75d9efd..6c59ffc2d4 100644
--- 
a/dubbo-config/dubbo-config-spring/src/main/java/com/alibaba/dubbo/config/spring/AnnotationBean.java
+++ 
b/dubbo-config/dubbo-config-spring/src/main/java/com/alibaba/dubbo/config/spring/AnnotationBean.java
@@ -89,28 +89,28 @@ public void 
postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory)
         if (annotationPackage == null || annotationPackage.length() == 0) {
             return;
         }
-        if (beanFactory instanceof BeanDefinitionRegistry) {
-            try {
-                // init scanner
-                Class<?> scannerClass = 
ReflectUtils.forName("org.springframework.context.annotation.ClassPathBeanDefinitionScanner");
-                Object scanner = scannerClass.getConstructor(new 
Class<?>[]{BeanDefinitionRegistry.class, boolean.class}).newInstance(new 
Object[]{(BeanDefinitionRegistry) beanFactory, true});
-                // add filter
-                Class<?> filterClass = 
ReflectUtils.forName("org.springframework.core.type.filter.AnnotationTypeFilter");
-                Object filter = 
filterClass.getConstructor(Class.class).newInstance(Service.class);
-                Method addIncludeFilter = 
scannerClass.getMethod("addIncludeFilter", 
ReflectUtils.forName("org.springframework.core.type.filter.TypeFilter"));
-                addIncludeFilter.invoke(scanner, filter);
-                // scan packages
-                String[] packages = 
Constants.COMMA_SPLIT_PATTERN.split(annotationPackage);
-                Method scan = scannerClass.getMethod("scan", new 
Class<?>[]{String[].class});
-                scan.invoke(scanner, new Object[]{packages});
-            } catch (Throwable e) {
-                // spring 2.0
-            }
+           if (beanFactory instanceof BeanDefinitionRegistry) {
+                   try {
+                           // init scanner
+                           Class<?> scannerClass = 
ReflectUtils.forName("org.springframework.context.annotation.ClassPathBeanDefinitionScanner");
+                           Object scanner = scannerClass.getConstructor(new 
Class<?>[]{BeanDefinitionRegistry.class, boolean.class}).newInstance(new 
Object[]{(BeanDefinitionRegistry) beanFactory, true});
+                           // add filter
+                           Class<?> filterClass = 
ReflectUtils.forName("org.springframework.core.type.filter.AnnotationTypeFilter");
+                           Object filter = 
filterClass.getConstructor(Class.class).newInstance(Service.class);
+                           Method addIncludeFilter = 
scannerClass.getMethod("addIncludeFilter", 
ReflectUtils.forName("org.springframework.core.type.filter.TypeFilter"));
+                           addIncludeFilter.invoke(scanner, filter);
+                           // scan packages
+                           String[] packages = 
Constants.COMMA_SPLIT_PATTERN.split(annotationPackage);
+                           Method scan = scannerClass.getMethod("scan", new 
Class<?>[]{String[].class});
+                           scan.invoke(scanner, new Object[]{packages});
+                   } catch (Throwable e) {
+                           // spring 2.0
+                   }
         }
     }
 
     @Override
-    public void destroy() throws Exception {
+    public void destroy() {
 
         //  This will only be called for singleton scope bean, and expected to 
be called by spring shutdown hook when BeanFactory/ApplicationContext destroys.
         //  We will guarantee dubbo related resources being released with 
dubbo shutdown hook.
@@ -152,37 +152,42 @@ public Object postProcessAfterInitialization(Object bean, 
String beanName)
             }
             if (applicationContext != null) {
                 serviceConfig.setApplicationContext(applicationContext);
-                if (service.registry() != null && service.registry().length > 
0) {
+                   service.registry();
+                   if (service.registry().length > 0) {
                     List<RegistryConfig> registryConfigs = new 
ArrayList<RegistryConfig>();
                     for (String registryId : service.registry()) {
                         if (registryId != null && registryId.length() > 0) {
-                            registryConfigs.add((RegistryConfig) 
applicationContext.getBean(registryId, RegistryConfig.class));
+                            
registryConfigs.add(applicationContext.getBean(registryId, 
RegistryConfig.class));
                         }
                     }
                     serviceConfig.setRegistries(registryConfigs);
                 }
-                if (service.provider() != null && service.provider().length() 
> 0) {
-                    serviceConfig.setProvider((ProviderConfig) 
applicationContext.getBean(service.provider(), ProviderConfig.class));
+                   service.provider();
+                   if (service.provider().length() > 0) {
+                    
serviceConfig.setProvider(applicationContext.getBean(service.provider(), 
ProviderConfig.class));
                 }
-                if (service.monitor() != null && service.monitor().length() > 
0) {
-                    serviceConfig.setMonitor((MonitorConfig) 
applicationContext.getBean(service.monitor(), MonitorConfig.class));
+                   service.monitor();
+                   if (service.monitor().length() > 0) {
+                    
serviceConfig.setMonitor(applicationContext.getBean(service.monitor(), 
MonitorConfig.class));
                 }
-                if (service.application() != null && 
service.application().length() > 0) {
-                    serviceConfig.setApplication((ApplicationConfig) 
applicationContext.getBean(service.application(), ApplicationConfig.class));
+                   service.application();
+                   if (service.application().length() > 0) {
+                    
serviceConfig.setApplication(applicationContext.getBean(service.application(), 
ApplicationConfig.class));
                 }
-                if (service.module() != null && service.module().length() > 0) 
{
-                    serviceConfig.setModule((ModuleConfig) 
applicationContext.getBean(service.module(), ModuleConfig.class));
+                   service.module();
+                   if (service.module().length() > 0) {
+                    
serviceConfig.setModule(applicationContext.getBean(service.module(), 
ModuleConfig.class));
                 }
-                if (service.provider() != null && service.provider().length() 
> 0) {
-                    serviceConfig.setProvider((ProviderConfig) 
applicationContext.getBean(service.provider(), ProviderConfig.class));
-                } else {
-
+                   service.provider();
+                   if (service.provider().length() > 0) {
+                    
serviceConfig.setProvider(applicationContext.getBean(service.provider(), 
ProviderConfig.class));
                 }
-                if (service.protocol() != null && service.protocol().length > 
0) {
+                   service.protocol();
+                   if (service.protocol().length > 0) {
                     List<ProtocolConfig> protocolConfigs = new 
ArrayList<ProtocolConfig>();
                     for (String protocolId : service.protocol()) {
                         if (protocolId != null && protocolId.length() > 0) {
-                            protocolConfigs.add((ProtocolConfig) 
applicationContext.getBean(protocolId, ProtocolConfig.class));
+                            
protocolConfigs.add(applicationContext.getBean(protocolId, 
ProtocolConfig.class));
                         }
                     }
                     serviceConfig.setProtocols(protocolConfigs);
@@ -190,7 +195,7 @@ public Object postProcessAfterInitialization(Object bean, 
String beanName)
                 try {
                     serviceConfig.afterPropertiesSet();
                 } catch (RuntimeException e) {
-                    throw (RuntimeException) e;
+                    throw e;
                 } catch (Exception e) {
                     throw new IllegalStateException(e.getMessage(), e);
                 }
@@ -219,7 +224,7 @@ public Object postProcessBeforeInitialization(Object bean, 
String beanName)
                     if (reference != null) {
                         Object value = refer(reference, 
method.getParameterTypes()[0]);
                         if (value != null) {
-                            method.invoke(bean, new Object[]{value});
+                            method.invoke(bean, value);
                         }
                     }
                 } catch (Throwable e) {
@@ -269,34 +274,38 @@ private Object refer(Reference reference, Class<?> 
referenceClass) { //method.ge
             }
             if (applicationContext != null) {
                 referenceConfig.setApplicationContext(applicationContext);
-                if (reference.registry() != null && 
reference.registry().length > 0) {
+                   reference.registry();
+                   if (reference.registry().length > 0) {
                     List<RegistryConfig> registryConfigs = new 
ArrayList<RegistryConfig>();
                     for (String registryId : reference.registry()) {
                         if (registryId != null && registryId.length() > 0) {
-                            registryConfigs.add((RegistryConfig) 
applicationContext.getBean(registryId, RegistryConfig.class));
+                            
registryConfigs.add(applicationContext.getBean(registryId, 
RegistryConfig.class));
                         }
                     }
                     referenceConfig.setRegistries(registryConfigs);
                 }
-                if (reference.consumer() != null && 
reference.consumer().length() > 0) {
-                    referenceConfig.setConsumer((ConsumerConfig) 
applicationContext.getBean(reference.consumer(), ConsumerConfig.class));
+                   reference.consumer();
+                   if (reference.consumer().length() > 0) {
+                    
referenceConfig.setConsumer(applicationContext.getBean(reference.consumer(), 
ConsumerConfig.class));
                 }
-                if (reference.monitor() != null && 
reference.monitor().length() > 0) {
-                    referenceConfig.setMonitor((MonitorConfig) 
applicationContext.getBean(reference.monitor(), MonitorConfig.class));
+                   reference.monitor();
+                   if (reference.monitor().length() > 0) {
+                    
referenceConfig.setMonitor(applicationContext.getBean(reference.monitor(), 
MonitorConfig.class));
                 }
-                if (reference.application() != null && 
reference.application().length() > 0) {
-                    referenceConfig.setApplication((ApplicationConfig) 
applicationContext.getBean(reference.application(), ApplicationConfig.class));
+                   reference.application();
+                   if (reference.application().length() > 0) {
+                    
referenceConfig.setApplication(applicationContext.getBean(reference.application(),
 ApplicationConfig.class));
                 }
                 if (reference.module() != null && reference.module().length() 
> 0) {
-                    referenceConfig.setModule((ModuleConfig) 
applicationContext.getBean(reference.module(), ModuleConfig.class));
+                    
referenceConfig.setModule(applicationContext.getBean(reference.module(), 
ModuleConfig.class));
                 }
                 if (reference.consumer() != null && 
reference.consumer().length() > 0) {
-                    referenceConfig.setConsumer((ConsumerConfig) 
applicationContext.getBean(reference.consumer(), ConsumerConfig.class));
+                    
referenceConfig.setConsumer(applicationContext.getBean(reference.consumer(), 
ConsumerConfig.class));
                 }
                 try {
                     referenceConfig.afterPropertiesSet();
                 } catch (RuntimeException e) {
-                    throw (RuntimeException) e;
+                    throw e;
                 } catch (Exception e) {
                     throw new IllegalStateException(e.getMessage(), e);
                 }


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org
For additional commands, e-mail: notifications-h...@dubbo.apache.org

Reply via email to