Skip to content

Commit 4c70412

Browse files
Update Program.cs
1 parent af69379 commit 4c70412

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/StaticAnalysis/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public static void Main(string[] args)
6969
throw new InvalidOperationException(string.Format("Please provide a valid installation directory; the provided directory '{0}' could not be found.", installDir));
7070
}
7171

72-
var directories = new List<string> { installDir }.Where((d) => Directory.Exists(d)).ToList<string>();
72+
var directories = new List<string>{ installDir }.Where((d) => Directory.Exists(d)).ToList<string>();
7373

7474
var reportsDirectory = Directory.GetCurrentDirectory();
7575
bool logReportsDirectoryWarning = true;
@@ -133,7 +133,7 @@ public static void Main(string[] args)
133133
analysisLogger.WriteReports();
134134
analysisLogger.CheckForIssues(2);
135135
}
136-
catch (Exception ex)
136+
catch(Exception ex)
137137
{
138138
analysisLogger?.WriteError(ex.ToString());
139139
throw ex;

0 commit comments

Comments
 (0)