Skip to content

Commit

Permalink
Merge pull request #32 from marksto/master
Browse files Browse the repository at this point in the history
Fix reflective access issues
  • Loading branch information
philoskim authored Mar 16, 2024
2 parents f08f9c7 + a46bd4d commit 543d85b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
:url "https://github.com/philoskim/debux"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:global-vars {*warn-on-reflection* true}
:dependencies [[org.clojure/clojure "1.10.0" :scope "provided"]
[org.clojure/clojurescript "1.10.238" :scope "provided"]]
:source-paths ["src"])
2 changes: 1 addition & 1 deletion src/debux/common/util.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@

(defn truncate [s]
(if (> (count s) 70)
(str (.substring s 0 70) " ...")
(str (subs s 0 70) " ...")
s))

(defn make-bullets
Expand Down

0 comments on commit 543d85b

Please sign in to comment.