Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
mausch committed Dec 24, 2012
1 parent 0131a3b commit 130dcd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QuartzNetWebConsole/ControllerFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ private static ISchedulerWrapper GetSchedulerWrapper() {
Route("triggersByJob", ctx => TriggersByJobController.Execute(ctx, Setup.Scheduler)),
};

public static KeyValuePair<string, Action<HttpContextBase>> Route(string path, Action<HttpContextBase> action) {
return new KeyValuePair<string, Action<HttpContextBase>>(path, action);
public static Route Route(string path, Action<HttpContextBase> action) {
return new Route(path, action);
}
}
}

0 comments on commit 130dcd5

Please sign in to comment.