Small bug in Aspect class>>display:on:

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Small bug in Aspect class>>display:on:

Chris Uppal-3
It assumes that the last case in the "overrides" list will act as a
catchall, however if anObject is not a subclass of Object then it will fail
with walkbacks.

This can happen when attempting to de-STB a class which has been removed
from the image, since it will be represented by a ClassStub which is not
isKindOf: Object.

    -- chris