Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 0 additions & 70 deletions Nodejs/Product/Nodejs/CodeWindowManager.cs

This file was deleted.

139 changes: 0 additions & 139 deletions Nodejs/Product/Nodejs/Navigation/CodeWindowManager.cs

This file was deleted.

4 changes: 1 addition & 3 deletions Nodejs/Product/Nodejs/Nodejs.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Choose>
<When Condition=" '$(VisualStudioVersion)'=='15.0' Or '$(TargetVisualStudioVersion)'=='VS150' ">
Expand Down Expand Up @@ -247,7 +247,6 @@
<Compile Include="Classifier\TokenCache.cs" />
<Compile Include="Classifier\TokenCategory.cs" />
<Compile Include="Classifier\TokenInfo.cs" />
<Compile Include="CodeWindowManager.cs" />
<Compile Include="Commands\AzureExplorerAttachDebuggerCommand.cs" />
<Compile Include="Commands\DiagnosticsCommand.cs" />
<Compile Include="Commands\DiagnosticsForm.cs">
Expand Down Expand Up @@ -647,7 +646,6 @@
<Compile Include="Extensions.cs" />
<Compile Include="Guids.cs" />
<Compile Include="JsonListener.cs" />
<Compile Include="Navigation\CodeWindowManager.cs" />
<Compile Include="NodejsConstants.cs" />
<Compile Include="NodejsEditorFactory.cs" />
<Compile Include="NodejsProject.cs" />
Expand Down
2 changes: 1 addition & 1 deletion Nodejs/Product/Nodejs/NodejsLanguageInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public NodejsLanguageInfo(IServiceProvider serviceProvider) {
}

public int GetCodeWindowManager(IVsCodeWindow pCodeWin, out IVsCodeWindowManager ppCodeWinMgr) {
ppCodeWinMgr = new CodeWindowManager(_componentModel.GetService<IVsEditorAdaptersFactoryService>());
ppCodeWinMgr = null;
return VSConstants.S_OK;
}

Expand Down