File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,7 @@ public interface IParamsValidator
1616 /// Validate <paramref name="parameters"/> of command based on validation attributes
1717 /// applied to method's parameters.
1818 /// </summary>
19- public ValidationResult ? ValidateParameters (
20- IEnumerable < ( ParameterInfo Parameter , object ? Value ) > parameters ) ;
19+ ValidationResult ? ValidateParameters ( IEnumerable < ( ParameterInfo Parameter , object ? Value ) > parameters ) ;
2120 }
2221
2322 /// <inheritdoc />
@@ -58,7 +57,7 @@ public class ParamsValidator : IParamsValidator
5857 . ToImmutableArray ( ) ;
5958
6059 return failedResults . Any ( )
61- ? new ValidationResult ( string . Concat ( ';' , failedResults . Select ( res => res ? . ErrorMessage ) ) )
60+ ? new ValidationResult ( string . Concat ( "; " , failedResults . Select ( res => res ? . ErrorMessage ) ) )
6261 : ValidationResult . Success ;
6362 }
6463
You can’t perform that action at this time.
0 commit comments