Skip to content

Commit

Permalink
Change to HashMap as ServiceController is not Comparable
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas committed Nov 5, 2011
1 parent 43a961b commit caf5ded
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -235,7 +235,7 @@ private synchronized ContainerStateChangeReport createContainerStateChangeReport
}
}

final Map<ServiceController<?>, String> currentFailedControllers = new TreeMap<ServiceController<?>, String>(failedControllers);
final Map<ServiceController<?>, String> currentFailedControllers = new HashMap<ServiceController<?>, String>(failedControllers);

previousMissingDepSet = new HashSet<ServiceName>(missingDeps.keySet());

Expand Down

0 comments on commit caf5ded

Please sign in to comment.