diff --git a/src/EditorFeatures/Next/NavigateTo/Dev15NavigateToHostVersionService.cs b/src/EditorFeatures/Next/NavigateTo/Dev15NavigateToHostVersionService.cs index 13e2e7a77530340f2eda855752ab296f03c16724..cfe6a45c1c47d9325898c871451cba11970a63bb 100644 --- a/src/EditorFeatures/Next/NavigateTo/Dev15NavigateToHostVersionService.cs +++ b/src/EditorFeatures/Next/NavigateTo/Dev15NavigateToHostVersionService.cs @@ -1,6 +1,5 @@ // 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.ComponentModel.Composition; using Microsoft.CodeAnalysis.Editor.Implementation.NavigateTo; using Microsoft.VisualStudio.Language.NavigateTo.Interfaces; @@ -9,11 +8,6 @@ namespace Microsoft.CodeAnalysis.Editor.NavigateTo [ExportVersionSpecific(typeof(INavigateToHostVersionService), VisualStudioVersion.Dev15)] internal partial class Dev15NavigateToHostVersionService : INavigateToHostVersionService { - [ImportingConstructor] - public Dev15NavigateToHostVersionService() - { - } - public bool GetSearchCurrentDocument(INavigateToOptions options) { var options2 = options as INavigateToOptions2;