ifNil eliminated
authorClaus Gittinger <cg@exept.de>
Tue, 14 Jul 2009 16:00:04 +0200
changeset 2098 2d26109579aa
parent 2097 2cb761062819
child 2099 edfeaba9c51e
ifNil eliminated
CVSSourceCodeManager.st
--- a/CVSSourceCodeManager.st	Tue Jun 30 12:51:05 2009 +0200
+++ b/CVSSourceCodeManager.st	Tue Jul 14 16:00:04 2009 +0200
@@ -218,7 +218,7 @@
     "/ if CVSROOT is non-empty and both cvs and co are available
     "/ as commands, assume this system uses a cvs source code management.
     "/
-    CVSRoot ifNil:[
+    CVSRoot isNil ifTrue:[
         CVSRoot := OperatingSystem getEnvironment:'CVSROOT'.
         CVSRoot isNil ifTrue:[
             "disabled since $CVSROOT is not set"
@@ -236,10 +236,10 @@
 
     UseWorkTree := false.
 
-    CacheDirectoryName ifNil:[
+    CacheDirectoryName isNil ifTrue:[
         self initCacheDirPath.
     ].
-    CachingSources ifNil:[
+    CachingSources isNil ifTrue:[
         CachingSources := true.
     ].
 
@@ -4743,7 +4743,7 @@
 !CVSSourceCodeManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.361 2009-02-26 21:13:56 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.362 2009-07-14 14:00:04 cg Exp $'
 ! !
 
 CVSSourceCodeManager initialize!