Skip to content

Commit 6d14923

Browse files
committed
Remove a default return value
1 parent f085330 commit 6d14923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-connection.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Retrieve the underlying connection's CIDER-nREPL version and checks if the
202202
middleware used is compatible with CIDER. If not, will display a warning
203203
message in the REPL area."
204204
(let* ((version-dict (nrepl-aux-info "cider-version" (cider-current-repl)))
205-
(middleware-version (nrepl-dict-get version-dict "version-string" "not installed")))
205+
(middleware-version (nrepl-dict-get version-dict "version-string")))
206206
(cond
207207
((null middleware-version)
208208
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"

0 commit comments

Comments
 (0)