refactor: Removing redundant code

This commit is contained in:
Chris Cameron
2018-06-07 16:32:09 -04:00
parent 18b07abb44
commit ce163629f3

View File

@@ -117,18 +117,11 @@ namespace ICD.Common.Utils.Xml
if (m_Reader == null)
return;
try
{
#if SIMPLSHARP
m_Reader.Dispose(true);
#else
m_Reader.Dispose();
#endif
}
catch (XmlException e)
{
throw new IcdXmlException(e);
}
}
public void Skip()