smalltalk
/
osmo-st-core
Archived
1
0
Fork 0

timer: Ignore already removed timers

This commit is contained in:
Holger Hans Peter Freyther 2011-06-22 16:59:33 +02:00
parent 4570878f9a
commit 8fd1c00968
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ bit difficult to do this race free.'>
removeTimer: aSched [
<category: 'schedule'>
sem critical: [
queue remove: aSched.
queue remove: aSched ifAbsent: [].
].
]