This is an automated email from the ASF dual-hosted git repository.
iluo 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 a88b1e2 single variable name should be singular (#4539)
a88b1e2 is described below
commit a88b1e295b63b27b194fea42d13f1720f3ba43a8
Author: Taosheng Wei <[email protected]>
AuthorDate: Mon Jul 15 10:59:16 2019 +0800
single variable name should be singular (#4539)
---
.../main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/dubbo-config/dubbo-config-api/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java
b/dubbo-config/dubbo-config-api/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java
index ca074a7..c6a0317 100644
---
a/dubbo-config/dubbo-config-api/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java
+++
b/dubbo-config/dubbo-config-api/src/main/java/org/apache/dubbo/config/AbstractInterfaceConfig.java
@@ -308,10 +308,10 @@ public abstract class AbstractInterfaceConfig extends
AbstractMethodConfig {
}
private DynamicConfiguration getDynamicConfiguration(URL url) {
- DynamicConfigurationFactory factories = ExtensionLoader
+ DynamicConfigurationFactory factory = ExtensionLoader
.getExtensionLoader(DynamicConfigurationFactory.class)
.getExtension(url.getProtocol());
- DynamicConfiguration configuration =
factories.getDynamicConfiguration(url);
+ DynamicConfiguration configuration =
factory.getDynamicConfiguration(url);
Environment.getInstance().setDynamicConfiguration(configuration);
return configuration;
}