Skip to content

Commit

Permalink
Drop spurious file-ending spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco De Salvo committed May 28, 2024
1 parent 26266cf commit 7246436
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion RDFSharp/Model/Facets/RDFLengthFacet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ public override bool Validate(string literalValue)
=> (string.IsNullOrEmpty(literalValue) && Length == 0) || literalValue?.Length == Length;
#endregion
}
}
}
2 changes: 1 addition & 1 deletion RDFSharp/Model/Facets/RDFMaxLengthFacet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ public override bool Validate(string literalValue)
=> string.IsNullOrEmpty(literalValue) || literalValue?.Length <= Length;
#endregion
}
}
}
2 changes: 1 addition & 1 deletion RDFSharp/Model/Facets/RDFMinLengthFacet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ public override bool Validate(string literalValue)
=> (string.IsNullOrEmpty(literalValue) && Length==0) || literalValue?.Length >= Length;
#endregion
}
}
}
2 changes: 1 addition & 1 deletion RDFSharp/Model/Facets/RDFPatternFacet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ public override bool Validate(string literalValue)
=> Regex.IsMatch(literalValue ?? string.Empty, Pattern);
#endregion
}
}
}

0 comments on commit 7246436

Please sign in to comment.