Skip to content

Commit

Permalink
Add some parenthesis to make code more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Willford committed Aug 5, 2019
1 parent e873b0a commit 873a07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GVFS/GVFS.Virtualization/Projection/GitIndexProjection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ private void RefreshFoldersToInclude()

if (!folderData.IsRecursive)
{
folderData.IsRecursive = i == folders.Length - 1;
folderData.IsRecursive = (i == folders.Length - 1);
}

parentFolder = folderData.Children;
Expand Down

0 comments on commit 873a07e

Please sign in to comment.