Fix more nullability errors

This commit is contained in:
Nikolaj Geisle
2022-02-15 14:41:06 +01:00
parent 793f8f0de2
commit 945b115067
61 changed files with 474 additions and 435 deletions

View File

@@ -40,7 +40,7 @@ namespace Umbraco.Cms.Core.Models
/// <param name="value">The property value.</param>
/// <param name="required">A value indicating whether the property value is required.</param>
/// <param name="format">A specific format (regex) that the property value must respect.</param>
IEnumerable<ValidationResult> Validate(object value, bool required, string format);
IEnumerable<ValidationResult> Validate(object value, bool required, string? format);
/// <summary>
/// Gets the validators to use to validate the edited value.