File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 1
- (defproject byte-streams " 0.2.3 "
1
+ (defproject byte-streams " 0.2.4-alpha1 "
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
- :dependencies [[primitive-math " 0.1.5 " ]
5
+ :dependencies [[primitive-math " 0.1.6 " ]
6
6
[clj-tuple " 0.2.2" ]
7
- [manifold " 0.1.6 " ]]
7
+ [manifold " 0.1.7-alpha5 " ]]
8
8
:profiles {:dev {:dependencies [[org.clojure/clojure " 1.8.0" ]
9
9
[org.clojure/test.check " 0.9.0" ]
10
10
[codox-md " 0.2.0" :exclusions [org.clojure/clojure]]]}}
11
11
:test-selectors {:stress :stress
12
12
:default (complement :stress )}
13
- :plugins [[lein-codox " 0.9.4 " ]
13
+ :plugins [[lein-codox " 0.10.3 " ]
14
14
[lein-jammin " 0.1.1" ]
15
15
[ztellman/lein-cljfmt " 0.1.10" ]]
16
16
:cljfmt {:indents {#".*" [[:inner 0 ]]}}
Original file line number Diff line number Diff line change 695
695
(let [^ByteBuffer buf (if direct?
696
696
(ByteBuffer/allocateDirect n)
697
697
(ByteBuffer/allocate n))]
698
- (while
699
- (and
700
- (.isOpen this)
701
- (pos? (.read this buf))))
698
+
699
+ (while (pos? (.read this buf)))
702
700
703
701
(when (pos? (.position buf))
704
702
(.flip buf))))
You can’t perform that action at this time.
0 commit comments