From 44e4c3bf68459220cf250a29bd1bcac0c37db2bc Mon Sep 17 00:00:00 2001 From: Sean Gilliam Date: Fri, 6 Feb 2015 23:39:21 -0600 Subject: [PATCH] Fixed method signature --- src/Spring/Spring.Core/Core/IO/EncodedResource.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Spring/Spring.Core/Core/IO/EncodedResource.cs b/src/Spring/Spring.Core/Core/IO/EncodedResource.cs index c1b4a591..ed7e2175 100644 --- a/src/Spring/Spring.Core/Core/IO/EncodedResource.cs +++ b/src/Spring/Spring.Core/Core/IO/EncodedResource.cs @@ -50,7 +50,7 @@ namespace Spring.Core.IO /// Create an encoded resource, autodetecting the encoding from the resource stream. /// /// the resource to read from. Must not be null - /// whether to autoDetect encoding from byte-order marks () + /// whether to autoDetect encoding from byte-order marks () public EncodedResource(IResource resource, bool autoDetectEncoding) :this(resource, null, autoDetectEncoding) { @@ -62,7 +62,7 @@ namespace Spring.Core.IO /// /// the resource to read from. Must not be null /// the encoding to use. If null, encoding will be autodetected. - /// whether to autoDetect encoding from byte-order marks () + /// whether to autoDetect encoding from byte-order marks () public EncodedResource(IResource resource, Encoding encoding, bool autoDetectEncoding) { AssertUtils.ArgumentNotNull(resource, "resource"); @@ -88,7 +88,7 @@ namespace Spring.Core.IO } /// - /// whether to autoDetect encoding from byte-order marks () + /// whether to autoDetect encoding from byte-order marks () /// public bool AutoDetectEncoding {