You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It avoids to use the binary message into the Finder with meta-annotated Boolean properties
when using Metanool.
For example, instead of:
each annotations hugeClasses = true
We have:
each annotations hugeClasses
What do you think?
Code to fix it is below.
FM3PropertyDescription>>getRawFrom: element
^ element privateState
attributeAt: self name
ifAbsent: [
(self type = FM3 boolean)
ifTrue: [false]
ifFalse: [nil] ]
Reported by andrehoraa on 2011-10-15 19:29:29
The text was updated successfully, but these errors were encountered:
getRawFrom: is basic and must remain like this because it is used in many contexts.
The metanool-related problem should probably be solved in metanool when installing
the property.
Originally reported on Google Code with ID 726
Reported by
andrehoraa
on 2011-10-15 19:29:29The text was updated successfully, but these errors were encountered: