Fix name of PrologModule.EnvironmentModule

Change-Id: I78f6fd6d2322ba4ca1b2dedc3c984622a248f307
This commit is contained in:
Shawn Pearce
2013-08-05 17:30:39 -07:00
parent 9b24f90849
commit 3cfb54b4f3
2 changed files with 3 additions and 3 deletions

View File

@@ -20,11 +20,11 @@ import com.google.gerrit.server.config.FactoryModule;
public class PrologModule extends FactoryModule {
@Override
protected void configure() {
install(new EnviromentModule());
install(new EnvironmentModule());
bind(PrologEnvironment.Args.class);
}
static class EnviromentModule extends FactoryModule {
static class EnvironmentModule extends FactoryModule {
@Override
protected void configure() {
DynamicSet.setOf(binder(), PredicateProvider.class);