Skip to content

Commit 0df6a1c

Browse files
committed
Fix quality issues
1 parent e3cbf14 commit 0df6a1c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

csharp/extractor/Semmle.Extraction.CSharp/Extractor/Context.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ internal void CacheLambdaParameterSymbol(IParameterSymbol param, SyntaxNode synt
7777

7878
internal CommentProcessor CommentGenerator { get; } = new CommentProcessor();
7979

80-
public Context(ExtractionContext e, Compilation c, TrapWriter trapWriter, IExtractionScope scope, bool addAssemblyTrapPrefix)
81-
: base(e, trapWriter, addAssemblyTrapPrefix)
80+
public Context(ExtractionContext extractionContext, Compilation c, TrapWriter trapWriter, IExtractionScope scope, bool addAssemblyTrapPrefix)
81+
: base(extractionContext, trapWriter, addAssemblyTrapPrefix)
8282
{
8383
Compilation = c;
8484
this.scope = scope;

csharp/extractor/Semmle.Extraction/Context.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ public void PopulateAll()
190190
}
191191
}
192192

193-
protected Context(ExtractionContext extractor, TrapWriter trapWriter, bool shouldAddAssemblyTrapPrefix = false)
193+
protected Context(ExtractionContext extractionContext, TrapWriter trapWriter, bool shouldAddAssemblyTrapPrefix = false)
194194
{
195-
ExtractionContext = extractor;
195+
ExtractionContext = extractionContext;
196196
TrapWriter = trapWriter;
197197
ShouldAddAssemblyTrapPrefix = shouldAddAssemblyTrapPrefix;
198198
}

0 commit comments

Comments
 (0)