summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-08-16 20:26:01 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2018-08-16 20:26:01 +0200
commit6d14923200a3403deb96d46a0d0acbe130d40efb (patch)
tree1f177cdd22eeaa20386c00bc3b4003d91cf15e43
parentf0853305a3981eb6f0eaed39a759fef76b053341 (diff)
Remove a default return value
-rw-r--r--cider-connection.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-connection.el b/cider-connection.el
index 6604c8ed..da2c2d15 100644
--- a/cider-connection.el
+++ b/cider-connection.el
@@ -202,7 +202,7 @@ Retrieve the underlying connection's CIDER-nREPL version and checks if the
middleware used is compatible with CIDER. If not, will display a warning
message in the REPL area."
(let* ((version-dict (nrepl-aux-info "cider-version" (cider-current-repl)))
- (middleware-version (nrepl-dict-get version-dict "version-string" "not installed")))
+ (middleware-version (nrepl-dict-get version-dict "version-string")))
(cond
((null middleware-version)
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"