Skip to content

Commit

Permalink
prefer the new nrepl to the old one
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Dec 20, 2018
1 parent 2113357 commit dbb839a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sidecar/src/figwheel_sidecar/components/nrepl_server.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
[figwheel-sidecar.utils :as utils]
[com.stuartsierra.component :as component]))

(if (utils/require? 'clojure.tools.nrepl.server)
(if (utils/require? 'nrepl.server)
(require
'[clojure.tools.nrepl.server :as nrepl-serv])
'[nrepl.server :as nrepl-serv])
(require
'[nrepl.server :as nrepl-serv]))
'[clojure.tools.nrepl.server :as nrepl-serv]))

(defn start-nrepl-server
[figwheel-options autobuild-options]
Expand Down

0 comments on commit dbb839a

Please sign in to comment.