halts changed to breakpoint
authorClaus Gittinger <cg@exept.de>
Wed, 06 Mar 2013 10:01:16 +0100
changeset 3097 b067905c1c89
parent 3096 5c18b8ffc634
child 3098 737b14b51411
halts changed to breakpoint
IrisRGBReader.st
--- a/IrisRGBReader.st	Tue Feb 19 17:30:18 2013 +0100
+++ b/IrisRGBReader.st	Wed Mar 06 10:01:16 2013 +0100
@@ -139,7 +139,7 @@
                 self halt:'short read'
             ].
             (rleData at:length) ~~ 0 ifTrue:[
-                self halt.
+                self halt:'lengthTable not 0 terminated'.
             ].
 
             self class
@@ -229,7 +229,8 @@
 !IrisRGBReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/IrisRGBReader.st,v 1.13 2009-08-19 18:25:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/IrisRGBReader.st,v 1.14 2013-03-06 09:01:16 cg Exp $'
 ! !
 
+
 IrisRGBReader initialize!