Skip to content

Commit

Permalink
Update ParameterCore.cs
Browse files Browse the repository at this point in the history
Removed trim so parameter value white space is preserved.
  • Loading branch information
mhertzfeld committed Sep 8, 2020
1 parent 2627a0f commit b5d776e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/CrystalReportsNinja/ParameterCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void ProcessRawParameters()
{
_userParams.Add(new UserParameter
{
ParameterName = input.Substring(0, input.IndexOf(":")).Trim(),
ParameterName = input.Substring(0, input.IndexOf(":")),
ParameterValue = (input.Substring(input.IndexOf(":") + 1, input.Length - (input.IndexOf(":") + 1)))
}
);
Expand Down

0 comments on commit b5d776e

Please sign in to comment.