No need to autoload.
authorStefan Vogel <sv@exept.de>
Tue, 03 Aug 1999 14:08:07 +0200
changeset 4508 d64471bf34af
parent 4507 c15d849b1ddc
child 4509 a9cb45aa42b7
No need to autoload.
Notification.st
Warning.st
--- a/Notification.st	Tue Aug 03 13:47:54 1999 +0200
+++ b/Notification.st	Tue Aug 03 14:08:07 1999 +0200
@@ -80,7 +80,6 @@
     text := self errorString.
 
     (Smalltalk isInitialized and:[Dialog notNil]) ifTrue:[
-        Dialog autoload.        "in case its autoloaded"
         Dialog notify:text.
     ] ifFalse:[
         "
@@ -96,12 +95,12 @@
       Notification raiseRequestWith:self errorString:' abc'
     "
 
-    "Modified: / 2.8.1999 / 16:42:53 / stefan"
+    "Modified: / 3.8.1999 / 14:06:55 / stefan"
 ! !
 
 !Notification class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.3 1999-08-03 07:22:56 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Notification.st,v 1.4 1999-08-03 12:07:42 stefan Exp $'
 ! !
 Notification initialize!
--- a/Warning.st	Tue Aug 03 13:47:54 1999 +0200
+++ b/Warning.st	Tue Aug 03 14:08:07 1999 +0200
@@ -80,7 +80,6 @@
     text := self errorString.
 
     (Smalltalk isInitialized and:[Dialog notNil]) ifTrue:[
-        Dialog autoload.        "in case its autoloaded"
         Dialog warn:text.
     ] ifFalse:[
         "
@@ -95,12 +94,12 @@
       Warning raiseRequestWith:self errorString:' abc'
     "
 
-    "Modified: / 2.8.1999 / 16:41:53 / stefan"
+    "Modified: / 3.8.1999 / 14:06:41 / stefan"
 ! !
 
 !Warning class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Warning.st,v 1.3 1999-08-03 07:23:21 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Warning.st,v 1.4 1999-08-03 12:08:07 stefan Exp $'
 ! !
 Warning initialize!