From 9931d62c4f4371f7c3a41cc038bbf0488ea7b3e4 Mon Sep 17 00:00:00 2001 From: CyrusNajmabadi Date: Mon, 7 Nov 2016 18:39:21 -0800 Subject: [PATCH] Sort usings. --- .../CSharpReplacePropertyWithMethodsService.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Features/CSharp/Portable/ReplacePropertyWithMethods/CSharpReplacePropertyWithMethodsService.cs b/src/Features/CSharp/Portable/ReplacePropertyWithMethods/CSharpReplacePropertyWithMethodsService.cs index 6da6294615f..f7b4148a7c7 100644 --- a/src/Features/CSharp/Portable/ReplacePropertyWithMethods/CSharpReplacePropertyWithMethodsService.cs +++ b/src/Features/CSharp/Portable/ReplacePropertyWithMethods/CSharpReplacePropertyWithMethodsService.cs @@ -1,14 +1,16 @@ -using System.Collections.Generic; +// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System.Collections.Generic; using System.Composition; +using System.Linq; using System.Threading; using Microsoft.CodeAnalysis.CSharp.Extensions; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Editing; +using Microsoft.CodeAnalysis.Formatting; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.ReplacePropertyWithMethods; using Roslyn.Utilities; -using System.Linq; -using Microsoft.CodeAnalysis.Formatting; namespace Microsoft.CodeAnalysis.CSharp.ReplacePropertyWithMethods { -- GitLab