From 754381f858872adebef79a2398e6b77be8bbc143 Mon Sep 17 00:00:00 2001 From: Suha Can Date: Thu, 4 Mar 2010 10:58:55 -0800 Subject: [PATCH] - coding convention from previous checkin. - Please refer to the code for our coding conventions (we also have a Resharper file in the source tree under /src if you are using Resharper --HG-- branch : dev --- .../Modules/Orchard.Tags/Controllers/AdminController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Orchard.Web/Modules/Orchard.Tags/Controllers/AdminController.cs b/src/Orchard.Web/Modules/Orchard.Tags/Controllers/AdminController.cs index 879afa238..eac7aaea5 100644 --- a/src/Orchard.Web/Modules/Orchard.Tags/Controllers/AdminController.cs +++ b/src/Orchard.Web/Modules/Orchard.Tags/Controllers/AdminController.cs @@ -16,8 +16,7 @@ namespace Orchard.Tags.Controllers { public class AdminController : Controller { private readonly ITagService _tagService; - public AdminController(IOrchardServices services, ITagService tagService) - { + public AdminController(IOrchardServices services, ITagService tagService) { Services = services; _tagService = tagService; T = NullLocalizer.Instance;