Skip to content

Commit

Permalink
pickle: remove for now, we will bring it back later.
Browse files Browse the repository at this point in the history
See pyr#176 for rationale.
  • Loading branch information
pyr committed Feb 5, 2016
1 parent 38d7308 commit 815035c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 40 deletions.
1 change: 0 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
[org.clojure/tools.logging "0.3.1"]
[org.clojure/tools.cli "0.3.3"]
[com.stuartsierra/component "0.3.0"]
[spootnik/pickler "0.1.6"]
[spootnik/unilog "0.7.10"]
[spootnik/uncaught "0.5.3"]
[spootnik/globber "0.4.1"]
Expand Down
9 changes: 0 additions & 9 deletions src/io/cyanite/input.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,12 @@
(:require [com.stuartsierra.component :as component]
[io.cyanite.engine :as engine]
[io.cyanite.input.carbon :as carbon]
[io.cyanite.input.pickle :as pickle]
[io.cyanite.input.tcp :refer [map->TCPInput]]
[io.cyanite.utils :refer [now!]]
[clojure.tools.logging :refer [info]]))

(defmulti build-input (comp (fnil keyword "carbon") :type))

(defmethod build-input :pickle
[options]
(component/using
(map->TCPInput (assoc options
:port (or (:port options) 2004)
:pipeline pickle/pipeline))
[:engine]))

(defmethod build-input :carbon
[options]
(component/using
Expand Down
30 changes: 0 additions & 30 deletions src/io/cyanite/input/pickle.clj

This file was deleted.

0 comments on commit 815035c

Please sign in to comment.