From b6abb136258ad3b6588a24b8151f316d0ea4236b Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 20 Feb 2012 10:37:14 +0100 Subject: [PATCH] ipa: Add categories to methods of the IPA Proto Handler --- IPAProtoHandler.st | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/IPAProtoHandler.st b/IPAProtoHandler.st index 4ba6da8..080d8d9 100644 --- a/IPAProtoHandler.st +++ b/IPAProtoHandler.st @@ -1,5 +1,5 @@ " - (C) 2010 by Holger Hans Peter Freyther + (C) 2010-2012 by Holger Hans Peter Freyther All Rights Reserved This program is free software: you can redistribute it and/or modify @@ -34,10 +34,12 @@ Object subclass: IPAProtoHandler [ ] registerOn: aDispatcher [ + aDispatcher addHandler: IPAConstants protocolIPA on: self with: #handleMsg:. ] muxer: aMuxer [ + muxer := aMuxer. ]