Skip to content

Commit 3fbe1bc

Browse files
committed
Remove unused function
1 parent 03dfe48 commit 3fbe1bc

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/io/aviso/binary.clj

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
(import (java.lang StringBuilder))
44
(require [io.aviso
55
[ansi :as ansi]
6-
[writer :as w]]
7-
[clojure.string :as s]))
6+
[writer :as w]]))
87

98
(defprotocol BinaryData
109
"Allows various data sources to be treated as a byte-array data type that
@@ -41,11 +40,6 @@
4140
(w/writef writer " %02X" (byte-at data (+ offset i))))
4241
(w/write writer w/endline))
4342

44-
(defn- join-lines
45-
"Joins all the lines together seperated by newlines."
46-
[lines]
47-
(s/join \newline lines))
48-
4943
(defn write-binary
5044
"Formats a ByteData into a hex-dump string, consisting of multiple lines; each line formatted as:
5145

0 commit comments

Comments
 (0)