From dd1500dcfbac88e3f17d13ece9476b93c09e65d8 Mon Sep 17 00:00:00 2001 From: ianhong Date: Thu, 13 Nov 2014 11:26:05 -0800 Subject: [PATCH] Updated a comment and sort usings --- src/Microsoft.AspNet.Mvc.Razor/IRazorViewFactory.cs | 2 +- .../RazorViewFactoryTest.cs | 8 +------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/Microsoft.AspNet.Mvc.Razor/IRazorViewFactory.cs b/src/Microsoft.AspNet.Mvc.Razor/IRazorViewFactory.cs index 91cb4c73c2..67f7334e70 100644 --- a/src/Microsoft.AspNet.Mvc.Razor/IRazorViewFactory.cs +++ b/src/Microsoft.AspNet.Mvc.Razor/IRazorViewFactory.cs @@ -15,7 +15,7 @@ namespace Microsoft.AspNet.Mvc.Razor /// /// The instance to execute. /// Determines if the view is to be executed as a partial. - /// A instance that renders the contents of the specified + /// A instance that renders the contents of the IView GetView([NotNull] IRazorPage page, bool isPartial); } } \ No newline at end of file diff --git a/test/Microsoft.AspNet.Mvc.Razor.Test/RazorViewFactoryTest.cs b/test/Microsoft.AspNet.Mvc.Razor.Test/RazorViewFactoryTest.cs index 27849b1fae..b3cb915c64 100644 --- a/test/Microsoft.AspNet.Mvc.Razor.Test/RazorViewFactoryTest.cs +++ b/test/Microsoft.AspNet.Mvc.Razor.Test/RazorViewFactoryTest.cs @@ -1,14 +1,8 @@ // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -using System; -using System.IO; -using System.Threading.Tasks; -using Xunit; -using Microsoft.AspNet.Mvc.ModelBinding; -using Microsoft.AspNet.Mvc.Rendering; -using Microsoft.AspNet.PipelineCore; using Moq; +using Xunit; namespace Microsoft.AspNet.Mvc.Razor.Test {