Skip to content

Commit

Permalink
remove dead code in wrapper-stream
Browse files Browse the repository at this point in the history
  • Loading branch information
lmj committed Mar 16, 2013
1 parent 3d18515 commit 5574ea6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lfarm-gss/wrapper-stream.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
(defmethod trivial-gray-streams:stream-read-sequence
((stream wrapper-stream) seq start end &key)
(read-sequence seq (wrapper-stream-delegate stream)
:start (or start 0) :end end))
:start start :end end))

(defmethod trivial-gray-streams:stream-write-sequence
((stream wrapper-stream) seq start end &key)
(write-sequence seq (wrapper-stream-delegate stream)
:start (or start 0) :end end))
:start start :end end))

(defmethod trivial-gray-streams:stream-finish-output
((stream wrapper-stream))
Expand Down

0 comments on commit 5574ea6

Please sign in to comment.