Skip to content

Commit 2fce23b

Browse files
committed
code cleanup
1 parent 3c23790 commit 2fce23b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

SharedProject/Editor/Management/CoverageColours.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ IFontAndColorsInfo notIncludedInfo
2323
{ DynamicCoverageType.NotIncluded, notIncludedInfo}
2424
};
2525

26-
internal Dictionary<DynamicCoverageType, IFontAndColorsInfo> GetChanges(CoverageColours lastCoverageColours)
26+
internal Dictionary<DynamicCoverageType, IFontAndColorsInfo> GetChanges(CoverageColours lastCoverageColours)
2727
=> lastCoverageColours == null
2828
? this.coverageTypeToFontAndColorsInfo
2929
: this.GetChanges(lastCoverageColours.coverageTypeToFontAndColorsInfo);

SharedProject/Editor/Tagging/Base/CoverageTaggerProviderFactory.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ public ICoverageTaggerProvider<TTag> Create<TTag, TCoverageTypeFilter>(ILineSpan
3636
where TTag : ITag
3737
where TCoverageTypeFilter : ICoverageTypeFilter, new()
3838
=> new CoverageTaggerProvider<TCoverageTypeFilter, TTag>(
39-
this.eventAggregator,
40-
this.appOptionsProvider,
41-
this.lineSpanLogic,
42-
tagger,
43-
this.dynamicCoverageManager,
39+
this.eventAggregator,
40+
this.appOptionsProvider,
41+
this.lineSpanLogic,
42+
tagger,
43+
this.dynamicCoverageManager,
4444
this.textInfoFactory
4545
);
4646
}

0 commit comments

Comments
 (0)