Skip to content

Commit

Permalink
renaming method, typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Neubauer committed Sep 12, 2011
1 parent ed98938 commit 02bc976
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -351,7 +351,7 @@ public PluginManager getExtensionManager()
@Override
public Collection<Injectable<?>> getInjectables( List<String> packageNames )
{
return pluginInitializer.intitializePackages( packageNames );
return pluginInitializer.initializePackages( packageNames );
}

private boolean hasModule( Class<? extends ServerModule> clazz )
Expand Down
Expand Up @@ -44,7 +44,7 @@ public PluginInitializer( NeoServer neoServer )
pluginLifecycles = Service.load( PluginLifecycle.class );
}

public Collection<Injectable<?>> intitializePackages( Iterable<String> packageNames )
public Collection<Injectable<?>> initializePackages( Iterable<String> packageNames )
{
AbstractGraphDatabase graphDatabaseService = neoServer.getDatabase().graph;
Configuration configuration = neoServer.getConfiguration();
Expand Down

0 comments on commit 02bc976

Please sign in to comment.