diff --git a/ICD.Common.Utils/Xml/AbstractGenericXmlConverter.cs b/ICD.Common.Utils/Xml/AbstractGenericXmlConverter.cs
index 1673858..287ba0f 100644
--- a/ICD.Common.Utils/Xml/AbstractGenericXmlConverter.cs
+++ b/ICD.Common.Utils/Xml/AbstractGenericXmlConverter.cs
@@ -14,7 +14,10 @@ namespace ICD.Common.Utils.Xml
/// Creates a new instance of T.
///
///
- protected abstract T Instantiate();
+ protected virtual T Instantiate()
+ {
+ return ReflectionUtils.CreateInstance();
+ }
///
/// Writes the XML representation of the object.