Parser.st
changeset 1455 25e4af227208
parent 1453 205e70e12abe
child 1458 30380f0ecea2
--- a/Parser.st	Wed Sep 10 17:01:06 2003 +0200
+++ b/Parser.st	Wed Sep 10 17:01:23 2003 +0200
@@ -3713,8 +3713,9 @@
 
     returnsBoolean ifTrue:[
         (returnsNonBooleanLiteral or:[returnsSelf]) ifTrue:[
-            self notifyWarning:'Possible Error Warning:\\Method returns both boolean and non-boolean values.' withCRs
-                 position:1 to:tokenPosition
+            self 
+                warning:'Possible Error Warning:\\Method returns both boolean and non-boolean values.' withCRs
+                position:1 to:tokenPosition
         ]
     ].
 
@@ -7392,7 +7393,7 @@
 !Parser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.406 2003-09-09 09:42:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.407 2003-09-10 15:01:23 cg Exp $'
 ! !
 
 Parser initialize!