Remove unnecessary Trim() from GetPersonFromXmlNode

This commit is contained in:
Patrick Barron 2023-10-06 16:57:36 -04:00
parent 40e1c5f4c6
commit c38fbece03
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ public static class XmlReaderExtensions
return new PersonInfo
{
Name = name.Trim(),
Name = name,
Role = role,
Type = type,
SortOrder = sortOrder,