Skip to content

Commit

Permalink
[nop] Bring back private write-str-sm
Browse files Browse the repository at this point in the history
Hadn't actually intended to remove this
  • Loading branch information
ptaoussanis committed Aug 3, 2023
1 parent d820087 commit f1fd7bd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/taoensso/nippy.clj
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,7 @@
(defn- write-biginteger [out ^BigInteger n] (write-bytes-lg out (.toByteArray n)))

(defn- write-str-sm* [^DataOutput out ^String s] (write-bytes-sm* out (.getBytes s StandardCharsets/UTF_8)))
(defn- write-str-sm [^DataOutput out ^String s] (write-bytes-sm out (.getBytes s StandardCharsets/UTF_8)))
(defn- write-str-md [^DataOutput out ^String s] (write-bytes-md out (.getBytes s StandardCharsets/UTF_8)))
(defn- write-str-lg [^DataOutput out ^String s] (write-bytes-lg out (.getBytes s StandardCharsets/UTF_8)))
(defn- write-str [^DataOutput out ^String s]
Expand Down

0 comments on commit f1fd7bd

Please sign in to comment.