Skip to content

Commit

Permalink
Merge pull request #109 from FFXIV-CombatReborn/mergeWIP
Browse files Browse the repository at this point in the history
Cody Analyzer fix
  • Loading branch information
CarnifexOptimus authored May 29, 2024
2 parents fd5576d + 3c5b268 commit 2c02762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BossMod/BossModule/ArenaBounds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ private static string ComputeShapeHash(Shape shape, SHA512 sha512)
{
var data = Encoding.UTF8.GetBytes(shape.ToString());
var hash = sha512.ComputeHash(data);
return BitConverter.ToString(hash).Replace("-", "");
return BitConverter.ToString(hash).Replace("-", "", StringComparison.Ordinal);
}

private static RelSimplifiedComplexPolygon CombinePolygons(List<RelSimplifiedComplexPolygon> unionPolygons, List<RelSimplifiedComplexPolygon> differencePolygons, List<RelSimplifiedComplexPolygon> secondUnionPolygons)
Expand Down

0 comments on commit 2c02762

Please sign in to comment.