From: Daniel Turan Date: Wed, 27 Feb 2019 08:01:42 +0000 (+0100) Subject: Removed extra leading space X-Git-Tag: submit/tizen/20210909.063632~11031^2~2281 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4490601dd4b5f921bc4b7d542e016433a5498bc0;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Removed extra leading space Commit migrated from https://github.com/dotnet/corefx/commit/959cdfac0744b0a12c41fa06b9f5df55a91ff415 --- diff --git a/src/libraries/System.ComponentModel.Annotations/src/System/ComponentModel/DataAnnotations/CustomValidationAttribute.cs b/src/libraries/System.ComponentModel.Annotations/src/System/ComponentModel/DataAnnotations/CustomValidationAttribute.cs index 6566071..1220d2b 100644 --- a/src/libraries/System.ComponentModel.Annotations/src/System/ComponentModel/DataAnnotations/CustomValidationAttribute.cs +++ b/src/libraries/System.ComponentModel.Annotations/src/System/ComponentModel/DataAnnotations/CustomValidationAttribute.cs @@ -243,7 +243,7 @@ namespace System.ComponentModel.DataAnnotations } // Method must return a ValidationResult or derived class - if (!typeof(ValidationResult).IsAssignableFrom(methodInfo.ReturnType)) + if (!typeof(ValidationResult).IsAssignableFrom(methodInfo.ReturnType)) { return SR.Format(SR.CustomValidationAttribute_Method_Must_Return_ValidationResult, Method, ValidatorType.Name); }