diff --git a/RDFSharp/Model/Facets/RDFLengthFacet.cs b/RDFSharp/Model/Facets/RDFLengthFacet.cs index c682a9ce..58105946 100644 --- a/RDFSharp/Model/Facets/RDFLengthFacet.cs +++ b/RDFSharp/Model/Facets/RDFLengthFacet.cs @@ -55,4 +55,4 @@ public override bool Validate(string literalValue) => (string.IsNullOrEmpty(literalValue) && Length == 0) || literalValue?.Length == Length; #endregion } -} +} \ No newline at end of file diff --git a/RDFSharp/Model/Facets/RDFMaxLengthFacet.cs b/RDFSharp/Model/Facets/RDFMaxLengthFacet.cs index 3f225563..c3f29f46 100644 --- a/RDFSharp/Model/Facets/RDFMaxLengthFacet.cs +++ b/RDFSharp/Model/Facets/RDFMaxLengthFacet.cs @@ -55,4 +55,4 @@ public override bool Validate(string literalValue) => string.IsNullOrEmpty(literalValue) || literalValue?.Length <= Length; #endregion } -} +} \ No newline at end of file diff --git a/RDFSharp/Model/Facets/RDFMinLengthFacet.cs b/RDFSharp/Model/Facets/RDFMinLengthFacet.cs index dc744166..82bf50c6 100644 --- a/RDFSharp/Model/Facets/RDFMinLengthFacet.cs +++ b/RDFSharp/Model/Facets/RDFMinLengthFacet.cs @@ -55,4 +55,4 @@ public override bool Validate(string literalValue) => (string.IsNullOrEmpty(literalValue) && Length==0) || literalValue?.Length >= Length; #endregion } -} +} \ No newline at end of file diff --git a/RDFSharp/Model/Facets/RDFPatternFacet.cs b/RDFSharp/Model/Facets/RDFPatternFacet.cs index f6ea3ebd..422cbf89 100644 --- a/RDFSharp/Model/Facets/RDFPatternFacet.cs +++ b/RDFSharp/Model/Facets/RDFPatternFacet.cs @@ -54,4 +54,4 @@ public override bool Validate(string literalValue) => Regex.IsMatch(literalValue ?? string.Empty, Pattern); #endregion } -} +} \ No newline at end of file