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
Some Smalltalk platforms seem to continue evaluating the receiving block of
#on:do: after
processing the exception handler of a notification. Adding a return to the end
of the exception
handler solves this issue:
validate: anObject
[ validationBlock value: anObject.
message contents: nil.
^ true ]
on: self exceptionClass
do: [ :exception |
message contents: exception messageText.
^ false " <-- add this" ].
^ false
Original issue reported on code.google.com by renggli on 28 Nov 2008 at 2:23
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
renggli
on 28 Nov 2008 at 2:23The text was updated successfully, but these errors were encountered: