Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Jun 6, 2016
1 parent aff5894 commit 6244715
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/Cake.Core/Extensions/ProcessArgumentListExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,5 @@ public static void CopyTo(this ProcessArgumentBuilder source, ProcessArgumentBui
target.Append(token);
}
}

}
}
3 changes: 1 addition & 2 deletions src/Cake.Core/IO/ProcessArgumentBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,9 @@ IEnumerator<IProcessArgument> IEnumerable<IProcessArgument>.GetEnumerator()
/// <returns><see cref="IEnumerator"/></returns>
IEnumerator IEnumerable.GetEnumerator()
{
return ((IEnumerable) _tokens).GetEnumerator();
return ((IEnumerable)_tokens).GetEnumerator();
}


/// <summary>
/// Gets the number of arguments contained in the <see cref="ProcessArgumentBuilder"/>.
/// </summary>
Expand Down

0 comments on commit 6244715

Please sign in to comment.