Skip to content

Commit

Permalink
Replace with string.Empty
Browse files Browse the repository at this point in the history
  • Loading branch information
IvenBach committed Jul 20, 2019
1 parent e0a467c commit 7148094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rubberduck.RegexAssistant/QuantifierExtensions.cs
Expand Up @@ -31,7 +31,7 @@ public static string HumanReadable(this Quantifier quant)
}
return string.Format(AssistantResources.Quantifier_ClosedRange, quant.MinimumMatches, quant.MaximumMatches);
}
return "";
return string.Empty;
}
}
}
Expand Down

0 comments on commit 7148094

Please sign in to comment.