removed an infoPrint.
authorClaus Gittinger <cg@exept.de>
Fri, 18 Oct 1996 14:23:41 +0200
changeset 339 9b4ece782f6a
parent 338 071f92621e3b
child 340 0e8959b8a9cf
removed an infoPrint.
GIFReader.st
--- a/GIFReader.st	Wed Oct 16 01:36:36 1996 +0200
+++ b/GIFReader.st	Fri Oct 18 14:23:41 1996 +0200
@@ -17,7 +17,7 @@
 	category:'Graphics-Images-Support'
 !
 
-!GIFReader  class methodsFor:'documentation'!
+!GIFReader class methodsFor:'documentation'!
 
 copyright
 "
@@ -65,7 +65,7 @@
 "
 ! !
 
-!GIFReader  class methodsFor:'initialization'!
+!GIFReader class methodsFor:'initialization'!
 
 initialize
     "install myself in the Image classes fileFormat table
@@ -77,7 +77,7 @@
     "Modified: 23.4.1996 / 12:28:16 / cg"
 ! !
 
-!GIFReader  class methodsFor:'testing'!
+!GIFReader class methodsFor:'testing'!
 
 isValidImageFile:aFileName
     "return true, if aFileName contains a GIF image"
@@ -258,7 +258,7 @@
                          codeLen:(codeLen + 1).
 
     interlaced ifTrue:[
-        'GIFREADER: deinterlacing ...' infoPrintCR.
+"/        'GIFREADER: deinterlacing ...' infoPrintCR.
         tmp := ByteArray new:(data size).
 
         "phase 1: 0, 8, 16, 24, ..."
@@ -332,7 +332,7 @@
     "
 
     "Modified: 5.7.1996 / 17:32:01 / stefan"
-    "Modified: 14.9.1996 / 17:09:24 / cg"
+    "Modified: 18.10.1996 / 13:23:26 / cg"
 !
 
 makeGreyscale
@@ -465,9 +465,9 @@
     "Modified: 21.6.1996 / 12:44:25 / cg"
 ! !
 
-!GIFReader  class methodsFor:'documentation'!
+!GIFReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/GIFReader.st,v 1.42 1996-09-14 15:11:38 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/GIFReader.st,v 1.43 1996-10-18 12:23:41 cg Exp $'
 ! !
 GIFReader initialize!