fix method of replacing chars
This commit is contained in:
parent
b9ebaf0ffe
commit
7bda8d1a14
|
@ -100,8 +100,8 @@
|
||||||
(fn [^String char-line ^String output-line]
|
(fn [^String char-line ^String output-line]
|
||||||
(.concat output-line
|
(.concat output-line
|
||||||
(-> char-line
|
(-> char-line
|
||||||
(.replaceAll "@" "")
|
(.replace "@" "")
|
||||||
(.replaceAll hardblank " "))))
|
(.replace hardblank " "))))
|
||||||
char-lines
|
char-lines
|
||||||
lines)
|
lines)
|
||||||
lines)))
|
lines)))
|
||||||
|
|
Loading…
Reference in a new issue