From 130dcd582e86087bb25bb11fb0d02767fee5d7b6 Mon Sep 17 00:00:00 2001 From: mausch Date: Mon, 24 Dec 2012 01:21:46 -0300 Subject: [PATCH] Minor --- QuartzNetWebConsole/ControllerFactory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QuartzNetWebConsole/ControllerFactory.cs b/QuartzNetWebConsole/ControllerFactory.cs index 517cc5b..8237ef6 100644 --- a/QuartzNetWebConsole/ControllerFactory.cs +++ b/QuartzNetWebConsole/ControllerFactory.cs @@ -32,8 +32,8 @@ private static ISchedulerWrapper GetSchedulerWrapper() { Route("triggersByJob", ctx => TriggersByJobController.Execute(ctx, Setup.Scheduler)), }; - public static KeyValuePair> Route(string path, Action action) { - return new KeyValuePair>(path, action); + public static Route Route(string path, Action action) { + return new Route(path, action); } } } \ No newline at end of file