Skip to content

Commit

Permalink
#316 Use Unicode character notation.
Browse files Browse the repository at this point in the history
  • Loading branch information
yruslan committed Aug 12, 2020
1 parent ce58b17 commit 0c73b30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ object ANTLRParser {
private def filterSpecialCharacters(copybook: String): String = {
copybook
.replace('\u00a0', ' ') // Non-breakable spaces
.replace(0x09.toByte.toChar, ' ') // Tabs
.replace('\u0009', ' ') // Tabs
}

/**
Expand Down

0 comments on commit 0c73b30

Please sign in to comment.