#QUALITY by cg
authorClaus Gittinger <cg@exept.de>
Wed, 08 Feb 2017 00:57:48 +0100
changeset 17370 9e585530454d
parent 17369 bdffc1b4b8b5
child 17371 ffbfab2b0c09
#QUALITY by cg class: BookmarkList changed: #initialize
BookmarkList.st
--- a/BookmarkList.st	Wed Feb 08 00:51:09 2017 +0100
+++ b/BookmarkList.st	Wed Feb 08 00:57:48 2017 +0100
@@ -355,12 +355,15 @@
 initialize
     "Invoked when a new instance is created."
 
+    <modifier: #super> "must be called if redefined"
+
     super initialize.
 
     showRoot := false.
     self root: (Bookmark forFolderNamed: '<bookmarks>').
 
     "Modified: / 23-05-2011 / 13:56:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 08-02-2017 / 00:33:41 / cg"
 ! !
 
 !BookmarkList methodsFor:'loading & saving'!