Permalink
Browse files

Move from duck-streams to io.

  • Loading branch information...
1 parent 6aeae72 commit 45a1599a49e4e0f2568136831d5a1d7d4fbed570 @mmcgrana committed Aug 5, 2010
Showing with 2 additions and 2 deletions.
  1. +2 −2 src/clj/fleetdb/server.clj
View
4 src/clj/fleetdb/server.clj
@@ -3,7 +3,7 @@
(:require (fleetdb [file :as file] [thread-pool :as thread-pool]
[lint :as lint] [embedded :as embedded])
(clj-stacktrace [repl :as stacktrace])
- (clojure.contrib [str-utils :as str-utils] [duck-streams :as du])
+ (clojure.contrib [io :as io])
(clj-json [core :as json]))
(:import (java.net ServerSocket Socket InetAddress)
(java.io BufferedWriter OutputStreamWriter
@@ -17,7 +17,7 @@
(def fleetdb-version
(let [stream (.getResourceAsStream (RT/baseLoader) "project.clj")]
- (nth (read-string (du/slurp* stream)) 2)))
+ (nth (read-string (io/slurp* stream)) 2)))
(defn- info-map [dba]
(let [base {"fleetdb-version" fleetdb-version}

0 comments on commit 45a1599

Please sign in to comment.