class: Tools::ObjectModuleInformation
authorClaus Gittinger <cg@exept.de>
Tue, 04 Jun 2013 12:59:34 +0200
changeset 3012 27eb0659e5f0
parent 3011 ceaec66469ff
child 3013 4aa95683c0fc
class: Tools::ObjectModuleInformation changed: #updateModuleList
Tools__ObjectModuleInformation.st
--- a/Tools__ObjectModuleInformation.st	Tue Jun 04 12:31:15 2013 +0200
+++ b/Tools__ObjectModuleInformation.st	Tue Jun 04 12:59:34 2013 +0200
@@ -1486,9 +1486,9 @@
     showOthers ifTrue:[
         |otherObjects otherObjectNames|
 
-        otherObjects := (allObjects select:[:h | (h isFunctionObjectHandle
+        otherObjects := (allObjects reject:[:h | (h isFunctionObjectHandle
                                                  or:[h isMethodHandle
-                                                 or:[h isClassLibHandle]]) not]) asArray.
+                                                 or:[h isClassLibHandle]])]) asArray.
         otherObjectNames := otherObjects collect:[:entry | entry pathName].
         listOfModuleNames addAll:otherObjectNames.
         handles addAll:otherObjects.