Skip to content

Commit f64f32c

Browse files
committed
CMR-11368-databine: changing usage to new library
1 parent d4056bc commit f64f32c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

common-lib/src/cmr/common/nrepl.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(ns cmr.common.nrepl
22
"Common nREPL component for CMR apps."
33
(:require
4-
[clojure.tools.nrepl.server :as nrepl]
4+
[nrepl.server :as nrepl]
55
[cmr.common.lifecycle :as lifecycle]
66
[cmr.common.log :refer [info]]))
77

common-lib/test/cmr/common/test/nrepl.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"Tests for the nREPL component."
33
(:require
44
[clojure.test :refer [deftest is]]
5-
[clojure.tools.nrepl :as nrepl]
5+
[nrepl.core :as nrepl]
66
[cmr.common.lifecycle :as lifecycle]
77
[cmr.common.nrepl :as nrepl-component])
88
(:import
9-
(clojure.tools.nrepl.transport FnTransport)
9+
(nrepl.transport FnTransport)
1010
(java.net BindException)))
1111

1212
(deftest test-nrepl-component

0 commit comments

Comments
 (0)