AbstractSettingsApplication.st
changeset 8356 e70467868730
parent 8326 bcbaf1714503
child 8376 63af71109312
--- a/AbstractSettingsApplication.st	Mon Oct 20 16:29:11 2008 +0200
+++ b/AbstractSettingsApplication.st	Mon Oct 20 16:31:36 2008 +0200
@@ -12711,7 +12711,9 @@
     self availableManagers do:[:eachManager |
         eachManager repositoryInfoPerModule 
             keysAndValuesDo:[:module :info |
-                module withoutSeparators ~= module ifTrue:[self halt].
+                module withoutSeparators ~= module ifTrue:[
+                    self halt:'should not happen any longer'
+                ].
                 rootsPerModule at:module put:(Array with:eachManager with:info)
             ].
     ].
@@ -14790,5 +14792,5 @@
 !AbstractSettingsApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.305 2008-10-14 08:39:52 cg Exp $'
-! !
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.306 2008-10-20 14:31:36 cg Exp $'
+! !