Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-dmxc committed Mar 17, 2024
1 parent 5b560a5 commit ed504f5
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions RDMSharp/RDM/Tools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,24 +95,6 @@ public static string GetUnitSymbol(in ERDM_SensorUnit unit)
case ERDM_SensorUnit.NONE:
default:
return "";
}
static string SubscriptString(string str)
{
StringBuilder result = new StringBuilder();

foreach (char c in str)
{
if (char.IsLetter(c))
{
result.Append(SubscriptChar(c));
}
else
{
result.Append(c);
}
}

return result.ToString();
}
static char SubscriptChar(char c)

Check warning on line 99 in RDMSharp/RDM/Tools.cs

View workflow job for this annotation

GitHub Actions / build

The local function 'SubscriptChar' is declared but never used

Check warning on line 99 in RDMSharp/RDM/Tools.cs

View workflow job for this annotation

GitHub Actions / build

The local function 'SubscriptChar' is declared but never used

Check warning on line 99 in RDMSharp/RDM/Tools.cs

View workflow job for this annotation

GitHub Actions / build

The local function 'SubscriptChar' is declared but never used

Check warning on line 99 in RDMSharp/RDM/Tools.cs

View workflow job for this annotation

GitHub Actions / build

The local function 'SubscriptChar' is declared but never used
{
Expand Down

0 comments on commit ed504f5

Please sign in to comment.