Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebueno committed Jan 28, 2016
1 parent b2cf52c commit 7dae713
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion core/src/main/clojure/sneer/async.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
(ns sneer.async
(:require [clojure.core.async :as async :refer [chan go >! <! <!! alt! alts! timeout mult tap close!]]
[clojure.stacktrace :refer [print-throwable]]
[sneer.commons :refer :all]))

(def closed-chan (doto (async/chan) async/close!))
Expand Down
12 changes: 6 additions & 6 deletions core/src/main/clojure/sneer/flux.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
(ns sneer.flux
(:require
[clojure.core.async :refer [chan close! mult tap go >!! <!]]
[rx.lang.clojure.core :as rx]
[sneer.async :refer [close-with! go-trace decode-nil]])
[clojure.core.async :refer [chan close! mult tap go >!! <!]]
[rx.lang.clojure.core :as rx]
[sneer.async :refer [close-with! go-trace decode-nil]])
(:import
[rx.subjects AsyncSubject]
[sneer.commons Container]
[sneer.flux Dispatcher Action Request ActionBase]))
[rx.subjects AsyncSubject]
[sneer.commons Container]
[sneer.flux Dispatcher Action Request ActionBase]))

(defprotocol ActionSource
(tap-actions [_ ch]))
Expand Down

0 comments on commit 7dae713

Please sign in to comment.