smalltalk
/
osmo-st-core
Archived
1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-core/changes_for_pharo.st

20 lines
444 B
Smalltalk

TimerScheduler extend [
TimerScheduler class >> startUp [
Smalltalk at: #OsmoTimeScheduler ifPresent: [
OsmoTimeScheduler reinitialize.
].
]
platformInit [
<category: 'creation'>
"Pharo requires us to do some post-processing"
Smalltalk addToStartUpList: self class.
]
reinitialize [
<category: 'creation'>
loop terminate.
self startLoop.
]
]