Skip to content

Commit ea2b718

Browse files
committedMar 6, 2018
SA1515: Single-line comment should be preceded by blank line
1 parent 2cd3e2a commit ea2b718

File tree

82 files changed

+196
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+196
-1
lines changed
 

‎GitCommands/Config/ConfigFile.cs

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ public string GetAsString()
8989
foreach (var section in ConfigSections)
9090
{
9191
var keys = section.AsDictionary();
92+
9293
// Skip empty sections
9394
if (keys.Count == 0)
9495
{

‎GitCommands/EnvironmentPathsProvider.cs

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ public IEnumerable<string> GetEnvironmentPaths()
4646
foreach (string rawdir in pathVariable.Split(EnvUtils.EnvVariableSeparator))
4747
{
4848
string dir = rawdir;
49+
4950
// Usually, paths with spaces are not quoted on %PATH%, but it's well possible, and .NET won't consume a quoted path
5051
// This does not handle the full grammar of the %PATH%, but at least prevents Illegal Characters in Path exceptions (see #2924)
5152
dir = dir.Trim(new char[] { ' ', '"', '\t' });

0 commit comments

Comments
 (0)