Skip to content

Commit

Permalink
Fix return value of stop()
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthree committed Mar 20, 2013
1 parent d25209e commit 7be44d3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -412,14 +412,13 @@ public Set<Addon> call() throws Exception
{
calculateAddonsToStop(addonToStop, toStop, toRestart);
toRestart.removeAll(toStop);
toStop.add(addonToStop);

for (Addon addon : toStop)
{
doStop(addon);
}

doStop(addonToStop);

for (Addon addon : toRestart)
{
doStop(addon);
Expand Down

0 comments on commit 7be44d3

Please sign in to comment.