Skip to content

Commit

Permalink
single variable name should be singular (apache#4539)
Browse files Browse the repository at this point in the history
  • Loading branch information
tswstarplanet authored and beiwei30 committed Jul 15, 2019
1 parent 668378f commit a88b1e2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -308,10 +308,10 @@ private void prepareEnvironment() {
}

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;
}
Expand Down

0 comments on commit a88b1e2

Please sign in to comment.