Apparently I identified a bug

I have a sharedPool

SharedPool subclass: #CZPool
        instanceVariableNames: ''
        classVariableNames: 'Author BookTitle Chapter Editor Institution 
Journal Note Number Pages Publisher RequiredFields School Series Title Volume 
Year uthor'
        poolDictionaries: ''
        category: 'Citezen-Model'


and on the class side of a pool user class

Object subclass: #Flop
        instanceVariableNames: 'key value'
        classVariableNames: ''
        poolDictionaries: 'CZPool'
        category: 'Citezen-Model'


If I have 

Flop class>> foo

        ^ Author 

it will return the SharedPool value.

Now if I define the method in a subclass

Flop class>> foo

        ^ Author 

return the Author global class

Now I understand I got a problem.

Reply via email to