File tree Expand file tree Collapse file tree 4 files changed +1
-6
lines changed Expand file tree Collapse file tree 4 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ namespace Semmle.Extraction.CSharp.Entities
5
5
{
6
6
internal class Assembly : Location
7
7
{
8
- public override Context Context => ( Context ) base . Context ;
9
-
10
8
private readonly string assemblyPath ;
11
9
private readonly IAssemblySymbol assembly ;
12
10
private readonly bool isOutputAssembly ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace Semmle.Extraction.CSharp
6
6
{
7
7
public abstract class Entity : IEntity
8
8
{
9
- public virtual Context Context { get ; }
9
+ public Context Context { get ; }
10
10
11
11
protected Entity ( Context context )
12
12
{
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ public class File : CachedEntity<string>
11
11
protected readonly string originalPath ;
12
12
private readonly Lazy < PathTransformer . ITransformedPath > transformedPathLazy ;
13
13
protected PathTransformer . ITransformedPath TransformedPath => transformedPathLazy . Value ;
14
- public override Context Context => ( Context ) base . Context ;
15
14
public override Microsoft . CodeAnalysis . Location ? ReportingLocation => null ;
16
15
17
16
public override bool NeedsPopulation => true ;
Original file line number Diff line number Diff line change @@ -5,8 +5,6 @@ namespace Semmle.Extraction.CSharp.Entities
5
5
{
6
6
internal class NonGeneratedSourceLocation : SourceLocation
7
7
{
8
- public override Context Context => ( Context ) base . Context ;
9
-
10
8
protected NonGeneratedSourceLocation ( Context cx , Microsoft . CodeAnalysis . Location init )
11
9
: base ( cx , init )
12
10
{
You can’t perform that action at this time.
0 commit comments