Skip to content

Commit 23d41c2

Browse files
committed
Clean up manifold.deferred ns
1 parent c95aa0f commit 23d41c2

File tree

1 file changed

+33
-34
lines changed

1 file changed

+33
-34
lines changed

src/manifold/deferred.clj

Lines changed: 33 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3,43 +3,42 @@
33
:doc "Methods for creating, transforming, and interacting with asynchronous values."}
44
(:refer-clojure :exclude [realized? loop future])
55
(:require
6+
[clojure.set :as set]
67
[clojure.tools.logging :as log]
7-
[riddley.walk :as walk]
8+
[manifold.debug :as debug]
9+
[manifold.executor :as ex]
10+
[manifold.time :as time]
11+
[manifold.utils :as utils :refer [assert-some definterface+]]
12+
[potemkin.types :refer [def-abstract-type reify+ defprotocol+ deftype+]]
813
[riddley.compiler :as compiler]
9-
[manifold
10-
[executor :as ex]
11-
[utils :as utils :refer [assert-some definterface+]]
12-
[time :as time]
13-
[debug :as debug]]
14-
[clojure.set :as set]
15-
[potemkin.types :refer [def-abstract-type reify+ defprotocol+ deftype+]])
14+
[riddley.walk :as walk])
1615
(:import
17-
[java.util
18-
LinkedList]
19-
[java.io
20-
Writer]
21-
[java.util.concurrent
22-
Future
23-
TimeoutException
24-
TimeUnit
25-
CountDownLatch
26-
Executor
27-
CompletionStage
28-
CompletableFuture]
29-
[java.util.function
30-
Function
31-
BiFunction
32-
Consumer
33-
BiConsumer]
34-
[java.util.concurrent.locks
35-
Lock]
36-
[java.util.concurrent.atomic
37-
AtomicInteger
38-
AtomicLong]
39-
[clojure.lang
40-
IPending
41-
IBlockingDeref
42-
IDeref]))
16+
(clojure.lang
17+
IPending
18+
IBlockingDeref
19+
IDeref)
20+
(java.io
21+
Writer)
22+
(java.util
23+
LinkedList)
24+
(java.util.concurrent
25+
Future
26+
TimeoutException
27+
TimeUnit
28+
CountDownLatch
29+
Executor
30+
CompletionStage
31+
CompletableFuture)
32+
(java.util.concurrent.atomic
33+
AtomicInteger
34+
AtomicLong)
35+
(java.util.concurrent.locks
36+
Lock)
37+
(java.util.function
38+
Function
39+
BiFunction
40+
Consumer
41+
BiConsumer)))
4342

4443
(set! *warn-on-reflection* true)
4544
(set! *unchecked-math* true)

0 commit comments

Comments
 (0)