James Moger
2014-03-18 41a7e46579d12e36c583aa8c2418e49c3f4c29a4
src/main/java/com/gitblit/manager/GitblitManager.java
@@ -104,6 +104,8 @@
   protected final IRuntimeManager runtimeManager;
   protected final IPluginManager pluginManager;
   protected final INotificationManager notificationManager;
   protected final IUserManager userManager;
@@ -118,21 +120,20 @@
   protected final IFederationManager federationManager;
   protected final IPluginManager pluginManager;
   public GitblitManager(
         IRuntimeManager runtimeManager,
         IPluginManager pluginManager,
         INotificationManager notificationManager,
         IUserManager userManager,
         IAuthenticationManager authenticationManager,
         IPublicKeyManager publicKeyManager,
         IRepositoryManager repositoryManager,
         IProjectManager projectManager,
         IFederationManager federationManager,
         IPluginManager pluginManager) {
         IFederationManager federationManager) {
      this.settings = runtimeManager.getSettings();
      this.runtimeManager = runtimeManager;
      this.pluginManager = pluginManager;
      this.notificationManager = notificationManager;
      this.userManager = userManager;
      this.authenticationManager = authenticationManager;
@@ -140,7 +141,6 @@
      this.repositoryManager = repositoryManager;
      this.projectManager = projectManager;
      this.federationManager = federationManager;
      this.pluginManager = pluginManager;
   }
   @Override