1
0
Fork 0

SCCP: Fix the selector name to be called by the dispatcher

This commit is contained in:
Holger Hans Peter Freyther 2010-11-15 16:26:00 +01:00
parent dbb9182d1d
commit 56bef0a6b2
1 changed files with 2 additions and 2 deletions

View File

@ -6,10 +6,10 @@ Object subclass: SCCPHadler [
registerOn: aDispatcher [
aDispatcher addHandler: Osmo.IPAConstants protocolSCCP
on: self with: #handleMsg.
on: self with: #handleMsg:.
]
handlerMsg: aMsg [
handleMsg: aMsg [
'Got a new SCCP message' printNl.
]
]