From 92267b4c250d017bfdfffd6114ae5c4c4652b618 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Thu, 16 Oct 2014 13:12:38 -0700 Subject: [PATCH] Fix typo in samples --- .../Controllers/ManageController.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/samples/IdentitySample.Mvc/Controllers/ManageController.cs b/samples/IdentitySample.Mvc/Controllers/ManageController.cs index c824cedf76..04f75e19cb 100644 --- a/samples/IdentitySample.Mvc/Controllers/ManageController.cs +++ b/samples/IdentitySample.Mvc/Controllers/ManageController.cs @@ -1,10 +1,9 @@ -using IdentitySample.Models; -using Microsoft.AspNet.Http; -using Microsoft.AspNet.Identity; -using Microsoft.AspNet.Mvc; -using System.Linq; +using System.Linq; using System.Security.Principal; using System.Threading.Tasks; +using IdentitySample.Models; +using Microsoft.AspNet.Identity; +using Microsoft.AspNet.Mvc; namespace IdentitySample { @@ -13,7 +12,7 @@ namespace IdentitySample { public ManageController(UserManager userManager, SignInManager signInManager) { - UserManager = UserManager; + UserManager = userManager; SignInManager = signInManager; }