CVSSourceCodeManager.st
changeset 2686 ec7bf9602be7
parent 2671 4ca06794fb1f
child 2695 2cc0732cfa02
--- a/CVSSourceCodeManager.st	Mon Dec 26 00:50:39 2011 +0100
+++ b/CVSSourceCodeManager.st	Mon Dec 26 00:51:15 2011 +0100
@@ -384,7 +384,10 @@
 knownModules
     "return the modules, we currently know"
 
-    ^ CVSModuleRoots keys 
+    CVSModuleRoots isEmptyOrNil ifTrue:[^ #() ].
+    ^ CVSModuleRoots keys
+
+    "Modified: / 26-12-2011 / 00:49:03 / cg"
 !
 
 knownRepositories
@@ -5046,11 +5049,11 @@
 !CVSSourceCodeManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.414 2011-12-22 09:00:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.415 2011-12-25 23:51:15 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.414 2011-12-22 09:00:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/CVSSourceCodeManager.st,v 1.415 2011-12-25 23:51:15 cg Exp $'
 ! !
 
 CVSSourceCodeManager initialize!