Parcourir la source

remove mistakenly commited FORMAT invocations

avodonosov il y a 16 ans
Parent
commit
c2afe56f00
1 fichiers modifiés avec 0 ajouts et 2 suppressions
  1. 0 2
      mixin.lisp

+ 0 - 2
mixin.lisp

@@ -155,9 +155,7 @@
 (progn
   (defmethod gray:stream-read-sequence
     ((s trivial-gray-stream-mixin) seq &optional start end)
-    (format t "trivial-read~%")
     (stream-read-sequence s seq (or start 0) (or end (length seq))))
   (defmethod gray:stream-write-sequence
     ((s trivial-gray-stream-mixin) seq &optional start end)
-    (format t "trivial-write~%")
     (stream-write-sequence s seq (or start 0) (or end (length seq)))))