Fixed assorted inspection errors
This commit is contained in:
parent
127442d405
commit
a03f076355
5 changed files with 9 additions and 7 deletions
|
|
@ -553,9 +553,9 @@ class Str {
|
|||
*/
|
||||
static toASCIICode(b)
|
||||
{
|
||||
var s = (b != Str.ASCII.CR && b != Str.ASCII.LF ? Str.aASCIICodes[b] : null);
|
||||
if (s) {
|
||||
s = '<' + s + '>';
|
||||
var s;
|
||||
if (b != Str.ASCII.CR && b != Str.ASCII.LF) {
|
||||
s = '<' + Str.aASCIICodes[b] + '>';
|
||||
} else {
|
||||
s = String.fromCharCode(b);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue