Skip to content

Commit

Permalink
Improved property resolver performance slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenJDH committed Nov 30, 2024
1 parent 1854497 commit e8d1cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MavenVersionChecker.Action/Components/MavenPom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private string ResolveProperty(string propertyReference)
{
ArgumentException.ThrowIfNullOrWhiteSpace(propertyReference);

if (!propertyReference.Contains("$"))
if (!propertyReference.Contains('$'))
{
return propertyReference;
}
Expand Down

0 comments on commit e8d1cb5

Please sign in to comment.