fix method of replacing chars

This commit is contained in:
Gered 2014-03-29 17:10:52 -04:00
parent b9ebaf0ffe
commit 7bda8d1a14

View file

@ -100,8 +100,8 @@
(fn [^String char-line ^String output-line]
(.concat output-line
(-> char-line
(.replaceAll "@" "")
(.replaceAll hardblank " "))))
(.replace "@" "")
(.replace hardblank " "))))
char-lines
lines)
lines)))