Skip to content

Commit

Permalink
add trimer
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinZonda committed Apr 25, 2021
1 parent 4eff7a6 commit 836aa10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kvm.Analyser/Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static Dictionary<string, string> ParseKey(string str)
continue;
}

dic.Add(m[..index], m[(index + 1)..]);
dic.Add(m[..index].Trim(), m[(index + 1)..].Trim());
}

return dic;
Expand Down

0 comments on commit 836aa10

Please sign in to comment.