File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
- (defproject byte-streams " 0.2.1-alpha1 "
1
+ (defproject byte-streams " 0.2.1-alpha2 "
2
2
:description " A simple way to handle the menagerie of Java byte represenations."
3
3
:license {:name " MIT License"
4
4
:url " http://opensource.org/licenses/MIT" }
5
5
:dependencies [[primitive-math " 0.1.4" ]
6
6
[clj-tuple " 0.2.2" ]
7
- [manifold " 0.1.1-alpha4 " ]]
7
+ [manifold " 0.1.1" ]]
8
8
:profiles {:dev {:dependencies [[org.clojure/clojure " 1.7.0" ]
9
9
[org.clojure/test.check " 0.8.1" ]
10
10
[codox-md " 0.2.0" :exclusions [org.clojure/clojure]]]}}
Original file line number Diff line number Diff line change 201
201
(reify
202
202
203
203
clojure.lang.IPending
204
- (isRealized [_] (realized? s))
204
+ (isRealized [_]
205
+ (or
206
+ (not (instance? clojure.lang.IPending s))
207
+ (realized? s)))
205
208
206
209
Object
207
210
(finalize [_]
You can’t perform that action at this time.
0 commit comments