Skip to content

Commit

Permalink
Format fixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
floeschau committed Aug 7, 2024
1 parent 5872933 commit f93c8ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,14 @@ private async Task GetUserProduct(IItem item, string identifier)
private XmlSerializer GetTileSerializer(string identifier)
{
string baseline = identifier.Substring(28, 4);
if (String.Compare(baseline, "0511") >= 0) return s2L1CProductTileSerializer0511;
if (string.Compare(baseline, "0511") >= 0) return s2L1CProductTileSerializer0511;
return s2L1CProductTileSerializer0510;
}

private XmlSerializer GetUserProductSerializer(string identifier)
{
string baseline = identifier.Substring(28, 4);
if (String.Compare(baseline, "0511") >= 0) return s2L1CUserProductSerializer0511;
if (string.Compare(baseline, "0511") >= 0) return s2L1CUserProductSerializer0511;
return s2L1CUserProductSerializer0510;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,14 +177,14 @@ private async Task GetUserProduct(IItem item, string identifier)
private XmlSerializer GetTileSerializer(string identifier)
{
string baseline = identifier.Substring(28, 4);
if (String.Compare(baseline, "0511") >= 0) return s2L2AProductTileSerializer0511;
if (string.Compare(baseline, "0511") >= 0) return s2L2AProductTileSerializer0511;
return s2L2AProductTileSerializer0510;
}

private XmlSerializer GetUserProductSerializer(string identifier)
{
string baseline = identifier.Substring(28, 4);
if (String.Compare(baseline, "0511") >= 0) return s2L2AUserProductSerializer0511;
if (string.Compare(baseline, "0511") >= 0) return s2L2AUserProductSerializer0511;
return s2L2AUserProductSerializer0510;
}
}
Expand Down

0 comments on commit f93c8ac

Please sign in to comment.