Skip to content

Commit

Permalink
Text input: skip blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ToxicFrog committed Sep 17, 2017
1 parent 839c874 commit 192235e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject bltool "0.2.3"
(defproject bltool "0.2.4"
:description "Simple tools for managing a Backloggery game collection"
:url "https://github.com/toxicfrog/backloggery"
:license {:name "Apache License v2"
Expand Down
1 change: 1 addition & 0 deletions src/bltool/data/text.clj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
(defmethod read-games "text" [_ source]
(->> source
line-seq
(filter (comp not empty?))
(map from-text)))

(defmethod write-games "text" [_ games sink]
Expand Down

0 comments on commit 192235e

Please sign in to comment.