Skip to content

Commit

Permalink
remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
Geokureli committed Dec 14, 2023
1 parent 04c8c99 commit 0e1a9c5
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions flixel/graphics/frames/bmfont/BMFontChar.hx
Original file line number Diff line number Diff line change
Expand Up @@ -126,18 +126,4 @@ class BMFontChar
}
return chars;
}

static function getCorrectLetter(letter:String)
{
// handle some special cases of letters in the xml files
return switch (letter)
{
case "space": ' ';
case """: '"';
case "&": '&';
case ">": '>';
case "&lt;": '<';
default: letter;
}
}
}

0 comments on commit 0e1a9c5

Please sign in to comment.