humm you might be right |(. so metacello should explicitely tell to cache stuff in 2.0 then
On 2012-09-09, at 15:16, Mariano Martinez Peck <marianopeck@gmail.com> wrote:
> allFileNames
> cacheFileNames == true ifFalse: [ ^ self loadAllFileNames ].
> ^ allFileNames ifNil: [
> allFileNames := self loadAllFileNames]
>
>
> If you put a halt in the first if, you will see it stops...
> because cacheFileNames is nil. In 1.4 you have:
>
> allFileNamesOrCache
> ^ allFileNames ifNil: [self allFileNames]
>
> so it kind of always cached... so maybe this is a difference that affects
> the results?