Skip to content

Commit da1257e

Browse files
Joseph SunJosephSun2003
authored andcommitted
Add minor documentation corrections and remove unneeded changes
1 parent 0dfef6f commit da1257e

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

src/coverlet.collector/DataCollection/CoverageWrapper.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,5 @@ public void PrepareModules(Coverage coverage)
7070
{
7171
coverage.PrepareModules();
7272
}
73-
74-
public void UnloadModule(Coverage coverage, string modulePath)
75-
{
76-
coverage.UnloadModule(modulePath);
77-
}
7873
}
7974
}

src/coverlet.collector/Utilities/Interfaces/ICoverageWrapper.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,5 @@ internal interface ICoverageWrapper
3939
/// <param name="coverage"></param>
4040
void PrepareModules(Coverage coverage);
4141

42-
/// <summary>
43-
/// Unload module in the specified path
44-
/// </summary>
45-
/// <param name="coverage"></param>
46-
/// <param name="modulePath"> path of the module to be unloaded</param>
47-
void UnloadModule(Coverage coverage, string modulePath);
48-
4942
}
5043
}

src/coverlet.core/Coverage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ public CoverageResult GetCoverageResult()
334334

335335
/// <summary>
336336
/// Invoke the unloading of modules and restoration of the original assembly files, made public to allow unloading
337-
/// of instrumentation is testing using parallelization
337+
/// of instrumentation in large scale testing utilising parallelization
338338
/// </summary>
339339
/// <param name="modulePath"></param>
340340
public void UnloadModule(string modulePath)

0 commit comments

Comments
 (0)