Rename PluginConfigProvider to PluginConfigFactory.
The PluginConfigProvider was not a guice Provider. Since all classes named like ...Provider do implement the Provider<T> interface from guice, we can consider the naming of PluginConfigProvider as inconsistent. Change-Id: I83cbe47112865e293a7928b123d94d4b4a3839db
This commit is contained in:
@@ -331,14 +331,14 @@ only use the `plugin` subsection with their own name. For example the
|
|||||||
language = Latin
|
language = Latin
|
||||||
----
|
----
|
||||||
|
|
||||||
Via the `com.google.gerrit.server.config.PluginConfigProvider` class a
|
Via the `com.google.gerrit.server.config.PluginConfigFactory` class a
|
||||||
plugin can easily access its configuration and there is no need for a
|
plugin can easily access its configuration and there is no need for a
|
||||||
plugin to parse the `gerrit.config` file on its own:
|
plugin to parse the `gerrit.config` file on its own:
|
||||||
|
|
||||||
[source,java]
|
[source,java]
|
||||||
----
|
----
|
||||||
@Inject
|
@Inject
|
||||||
private com.google.gerrit.server.config.PluginConfigProvider cfg;
|
private com.google.gerrit.server.config.PluginConfigFactory cfg;
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
||||||
|
|||||||
@@ -20,11 +20,11 @@ import com.google.inject.Singleton;
|
|||||||
import org.eclipse.jgit.lib.Config;
|
import org.eclipse.jgit.lib.Config;
|
||||||
|
|
||||||
@Singleton
|
@Singleton
|
||||||
public class PluginConfigProvider {
|
public class PluginConfigFactory {
|
||||||
private final Config cfg;
|
private final Config cfg;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
PluginConfigProvider(@GerritServerConfig Config cfg) {
|
PluginConfigFactory(@GerritServerConfig Config cfg) {
|
||||||
this.cfg = cfg;
|
this.cfg = cfg;
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user