Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Remove unused field
  • Loading branch information
tmat committed Sep 18, 2020
commit 07a22629798daf08b27c2bd6c59344de060462c9
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ internal class CSharpFindUsagesLSPService : AbstractFindUsagesService
{
[ImportingConstructor]
[Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
public CSharpFindUsagesLSPService(IThreadingContext threadingContext)
: base(threadingContext)
public CSharpFindUsagesLSPService()
{
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ internal class CSharpFindUsagesService : AbstractFindUsagesService
{
[ImportingConstructor]
[Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
public CSharpFindUsagesService(IThreadingContext threadingContext)
: base(threadingContext)
public CSharpFindUsagesService()
{
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,5 @@ namespace Microsoft.CodeAnalysis.Editor.FindUsages
{
internal abstract partial class AbstractFindUsagesService : IFindUsagesService, IFindUsagesLSPService
{
private readonly IThreadingContext _threadingContext;

protected AbstractFindUsagesService(IThreadingContext threadingContext)
=> _threadingContext = threadingContext;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.FindUsages

<ImportingConstructor>
<Obsolete(MefConstruction.ImportingConstructorMessage, True)>
Public Sub New(threadingContext As IThreadingContext)
MyBase.New(threadingContext)
Public Sub New()
End Sub
End Class
End Namespace
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.FindUsages

<ImportingConstructor>
<Obsolete(MefConstruction.ImportingConstructorMessage, True)>
Public Sub New(threadingContext As IThreadingContext)
MyBase.New(threadingContext)
Public Sub New()
End Sub
End Class
End Namespace