BookmarkList.st
branchjv
changeset 12123 4bde08cebd48
parent 10911 c459d7c1a749
child 12125 0c49a3b13e43
--- a/BookmarkList.st	Fri Jan 27 22:18:53 2012 +0100
+++ b/BookmarkList.st	Sun Jan 29 12:53:39 2012 +0000
@@ -111,18 +111,20 @@
 !
 
 readFromFile: aStringOrFilename onError: aBlock
+
     | bookmarks file |
-
     file := aStringOrFilename asFilename.
-    file exists ifFalse: [^aBlock value].
-    bookmarks := self readFrom: file readStream onError: [^aBlock value].
-    bookmarks isNil ifTrue: [^aBlock value].
+    file exists ifFalse:
+        [^aBlock value].
+    bookmarks := self readFrom: file readStream onError: 
+        [^aBlock value].
+    bookmarks ifNil:
+        [^aBlock value].
     bookmarks fileName: file pathName.
     ^bookmarks
 
     "Created: / 23-05-2011 / 16:32:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 02-06-2011 / 19:43:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 18-11-2011 / 14:32:24 / cg"
 ! !
 
 !BookmarkList class methodsFor:'accessing'!
@@ -177,17 +179,16 @@
     | file  |
     file := Filename defaultDirectory / 'browser-bookmarks.rc'.
     BrowserBookmarks := self readFromFile: file onError:[nil].
-    BrowserBookmarks notNil ifTrue:[^self].    
+    BrowserBookmarks ifNotNil:[^self].    
 
     file := Filename homeDirectory / '.smalltalk' / 'browser-bookmarks.rc'.
     BrowserBookmarks := self readFromFile: file onError:[nil].
-    BrowserBookmarks notNil ifTrue:[^self].    
+    BrowserBookmarks ifNotNil:[^self].    
 
     BrowserBookmarks := self new fileName: file pathName.
 
     "Created: / 23-05-2011 / 10:06:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 23-05-2011 / 16:35:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 29-11-2011 / 11:21:06 / cg"
 !
 
 initializeWebBookmarks
@@ -195,16 +196,15 @@
     | file  |
     file := Filename defaultDirectory / 'web-bookmarks.rc'.
     WebBookmarks := self readFromFile: file onError:[nil].
-    WebBookmarks notNil ifTrue:[^self].    
+    WebBookmarks ifNotNil:[^self].    
 
     file := Filename homeDirectory / '.smalltalk' / 'web-bookmarks.rc'.
     WebBookmarks := self readFromFile: file onError:[nil].
-    WebBookmarks notNil ifTrue:[^self].    
+    WebBookmarks ifNotNil:[^self].    
 
     WebBookmarks := self new fileName: file pathName.
 
     "Created: / 08-06-2011 / 12:15:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 29-11-2011 / 11:21:10 / cg"
 !
 
 initializeWorkspaceBookmarks
@@ -212,11 +212,11 @@
     | file  |
     file := Filename defaultDirectory / 'workspace-bookmarks.rc'.
     WorkspaceBookmarks := self readFromFile: file onError:[nil].
-    WorkspaceBookmarks notNil ifTrue:[^self].    
+    WorkspaceBookmarks ifNotNil:[^self].    
 
     file := Filename homeDirectory / '.smalltalk' / 'workspace-bookmarks.rc'.
     WorkspaceBookmarks := self readFromFile: file onError:[nil].
-    WorkspaceBookmarks notNil ifTrue:[^self].    
+    WorkspaceBookmarks ifNotNil:[^self].    
 
     WorkspaceBookmarks := self new fileName: file pathName.
     WorkspaceBookmarks root add: 
@@ -235,7 +235,6 @@
 
     "Created: / 20-06-2011 / 22:10:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 21-06-2011 / 08:46:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 29-11-2011 / 11:21:16 / cg"
 ! !
 
 !BookmarkList methodsFor:'accessing'!
@@ -381,9 +380,9 @@
 !BookmarkList class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/BookmarkList.st,v 1.4 2011-11-29 10:21:52 cg Exp $'
+    ^ '§Header: /cvs/stx/stx/libtool/BookmarkList.st,v 1.2 2011/07/03 18:00:51 cg Exp §'
 !
 
 version_SVN
-    ^ '§Id§'
-! !
+    ^ '$Id$'
+! !
\ No newline at end of file