Fix `RazorLanguageService`.

- Previously our constructor was calling down into the wrong overload.
This commit is contained in:
N. Taylor Mullen 2017-03-20 16:27:56 -07:00
parent 53ac097ce4
commit d5e003fa4c
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ namespace Microsoft.CodeAnalysis.Remote.Razor
{
[Obsolete("This will be removed as part of #976. ServiceHub still calls this constructor. Remove once ServiceHub can use the other one.")]
public RazorLanguageService(Stream stream, IServiceProvider serviceProvider)
: base(serviceProvider, stream)
: base(stream, serviceProvider)
{
}