Skip to content

Commit 195c1ad

Browse files
Mohammad DehghanMohammad Dehghan
authored andcommitted
Rename class: RuntimeConfig
1 parent deea833 commit 195c1ad

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

SG.CodeCoverage.Recorder/RecordingController/RunTimeConfig.cs renamed to SG.CodeCoverage.Recorder/RecordingController/RuntimeConfig.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace SG.CodeCoverage.Recorder.RecordingController
1010
{
11-
public class RunTimeConfig
11+
public class RuntimeConfig
1212
{
1313
public List<RunningProcess> Processes { get; set; }
1414

@@ -55,7 +55,7 @@ private void Save(string fileName)
5555
}
5656
}
5757

58-
public static RunTimeConfig Load(string fileName)
58+
public static RuntimeConfig Load(string fileName)
5959
{
6060
List<RunningProcess> processes = new List<RunningProcess>();
6161
using (var reader = new StreamReader(fileName))
@@ -76,7 +76,7 @@ public static RunTimeConfig Load(string fileName)
7676
}
7777
}
7878

79-
var r = new RunTimeConfig() { Processes = processes };
79+
var r = new RuntimeConfig() { Processes = processes };
8080
r.Cleanup();
8181
return r;
8282
}

SG.CodeCoverage.Recorder/RecordingController/Server.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public async Task StartAsync(int port)
4242
listener.Start();
4343
this.Port = ((IPEndPoint)listener.LocalEndpoint).Port;
4444
_logger.LogInformation("Started listening on port " + this.Port + ".");
45-
RunTimeConfig.Update(this.Port);
45+
RuntimeConfig.Update(this.Port);
4646
try
4747
{
4848
while (true)

0 commit comments

Comments
 (0)