From 2dcbe545e34c50652d390c03512315c8179074f5 Mon Sep 17 00:00:00 2001 From: Phil Haack Date: Sun, 18 May 2014 14:42:31 -0700 Subject: [PATCH] Sort namespaces How did @eilon let this ship with the namespaces unsorted. He's growing soft in his old age. :trollface: --- samples/HelloMvc/Startup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/HelloMvc/Startup.cs b/samples/HelloMvc/Startup.cs index 48c8095a06..b631efce87 100644 --- a/samples/HelloMvc/Startup.cs +++ b/samples/HelloMvc/Startup.cs @@ -1,5 +1,5 @@ -using Microsoft.AspNet.Routing; using Microsoft.AspNet.Builder; +using Microsoft.AspNet.Routing; using Microsoft.Framework.DependencyInjection; namespace KWebStartup @@ -20,4 +20,4 @@ namespace KWebStartup app.UseWelcomePage(); } } -} \ No newline at end of file +}