Skip to content

Commit

Permalink
Code formatting in .NET. No functional changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Mar 17, 2020
1 parent c9ed1e2 commit 9d1fedb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dotnet/src/webdriver/DriverService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,10 @@ public void Dispose()
[SecurityPermission(SecurityAction.Demand)]
public void Start()
{
if(this.driverServiceProcess != null)
if (this.driverServiceProcess != null)
{
return;
}

this.driverServiceProcess = new Process();
this.driverServiceProcess.StartInfo.FileName = Path.Combine(this.driverServicePath, this.driverServiceExecutableName);
Expand Down

0 comments on commit 9d1fedb

Please sign in to comment.