comment
authorClaus Gittinger <cg@exept.de>
Mon, 26 Jan 1998 12:58:12 +0100
changeset 771 c04519bd946f
parent 770 86ff2c263a8d
child 772 6164c303afde
comment
Model.st
--- a/Model.st	Sun Jan 25 19:47:45 1998 +0100
+++ b/Model.st	Mon Jan 26 12:58:12 1998 +0100
@@ -113,7 +113,7 @@
 !
 
 dependents
-    "return a Collection of dependents - nil if there is none"
+    "return a Collection of dependents"
 
     dependents isNil ifTrue:[^ #()].
     dependents isCollection ifTrue:[
@@ -121,7 +121,7 @@
     ].
     ^ IdentitySet with:dependents
 
-    "Modified: / 27.10.1997 / 19:36:28 / cg"
+    "Modified: / 26.1.1998 / 11:18:24 / cg"
 !
 
 dependents:aCollection
@@ -252,5 +252,5 @@
 !Model class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/Model.st,v 1.28 1997-10-28 19:04:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/Model.st,v 1.29 1998-01-26 11:58:12 cg Exp $'
 ! !