diff --git a/CSharp/Libraries/UniversalEditor.Core/DataFormat.cs b/CSharp/Libraries/UniversalEditor.Core/DataFormat.cs
index e824f8d5..99ad104b 100644
--- a/CSharp/Libraries/UniversalEditor.Core/DataFormat.cs
+++ b/CSharp/Libraries/UniversalEditor.Core/DataFormat.cs
@@ -26,17 +26,17 @@ namespace UniversalEditor
private Accessor mvarAccessor = null;
protected internal Accessor Accessor { get { return mvarAccessor; } set { mvarAccessor = value; } }
- ///
- /// Continues loading the file into the specified with a different
- /// .
- ///
- /// The in which to continue loading the document.
- /// The used to parse the document.
- protected void ContinueLoading(ref ObjectModel objectModel, DataFormat otherDataFormat)
- {
- otherDataFormat.Accessor = mvarAccessor;
- otherDataFormat.Load(ref objectModel);
- }
+ ///
+ /// Continues loading the file into the specified with a different
+ /// .
+ ///
+ /// The in which to continue loading the document.
+ /// The used to parse the document.
+ protected void ContinueLoading(ref ObjectModel objectModel, DataFormat otherDataFormat)
+ {
+ otherDataFormat.Accessor = mvarAccessor;
+ otherDataFormat.Load(ref objectModel);
+ }
protected virtual bool IsObjectModelSupported(ObjectModel objectModel)
{