소스 검색

remove mistakenly commited FORMAT invocations

avodonosov 16 년 전
부모
커밋
c2afe56f00
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  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)))))