1
0
Fork 0

ipa: Create initializeHandlers for the init

This commit is contained in:
Holger Hans Peter Freyther 2013-04-29 15:59:30 +02:00
parent 529b082c10
commit c6f896f645
1 changed files with 6 additions and 1 deletions

View File

@ -26,9 +26,14 @@ Object subclass: IPAProtoHandler [
IPAProtoHandler class [
| handlers |
initialize [
<category: 'creation'>
^ self initializeHandlers
]
]
IPAProtoHandler class >> initialize [
IPAProtoHandler class >> initializeHandlers [
<category: 'private'>
(handlers := Dictionary new)
at: IPAConstants msgPing put: #handlePing:;