#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Thu, 25 Oct 2018 02:28:11 +0200
changeset 8547 499e28c3e9c0
parent 8546 199fb5dfe026
child 8548 3c1fc2006060
#BUGFIX by cg class: ResourcePack class changed: #newDefaultResourcePackForPackage: (send #isReallyRecursive instead of #isRecursive)
ResourcePack.st
--- a/ResourcePack.st	Thu Oct 25 02:17:58 2018 +0200
+++ b/ResourcePack.st	Thu Oct 25 02:28:11 2018 +0200
@@ -469,7 +469,7 @@
     rsrcs := ResourcePack new.
 
     Transcript showCR:'newDefaultResourcePackForPackage:',package.
-    thisContext isRecursive ifTrue:[
+    thisContext isReallyRecursive ifTrue:[
         thisContext fullPrintAll.
         ^ rsrcs
     ].
@@ -488,7 +488,7 @@
     ^ rsrcs
 
     "Created: / 24-10-2018 / 18:07:25 / Claus Gittinger"
-    "Modified: / 25-10-2018 / 02:18:07 / Claus Gittinger"
+    "Modified: / 25-10-2018 / 02:28:19 / Claus Gittinger"
 ! !
 
 !ResourcePack class methodsFor:'private'!