aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-04-29 15:59:30 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-04-29 15:59:30 +0200
commitc6f896f6454c635ff41f1d0a60c114fd68982a86 (patch)
tree487c4b931bd30270af7fca275584a3fd0fc7099d
parent529b082c10b797489b2975b94fa5633c2190b3bd (diff)
ipa: Create initializeHandlers for the init
-rw-r--r--ipa/IPAProtoHandler.st7
1 files changed, 6 insertions, 1 deletions
diff --git a/ipa/IPAProtoHandler.st b/ipa/IPAProtoHandler.st
index f26bf8a..a705d3b 100644
--- a/ipa/IPAProtoHandler.st
+++ b/ipa/IPAProtoHandler.st
@@ -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:;