From e712df4873df5b301a5234a85bf2fe0c9f99f2ef Mon Sep 17 00:00:00 2001 From: alcexhim Date: Tue, 10 Jun 2014 14:35:55 -0400 Subject: [PATCH] Tabify --- .../UniversalEditor.Core/DataFormat.cs | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) 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) {