Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
luyi1888 authored Mar 5, 2022
1 parent 09d71c3 commit 44c7ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EVEMon.Common/Serialization/Esi/EsiAPIShip.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public string ShipName
{
Regex pattern = new Regex(@"^u'(.*)'$");
Match match = pattern.Match(value);
if(match.Success)
if (match.Success)
{
_ShipName = Regex.Unescape(match.Groups[1].Value);
}
Expand Down

0 comments on commit 44c7ff5

Please sign in to comment.