smalltalk
/
osmo-st-mgcp
Archived
1
0
Fork 0

callagent: Fix the creation of the trunk

This commit is contained in:
Holger Hans Peter Freyther 2011-06-24 16:49:56 +02:00
parent dc2a6faf2b
commit 3ede17cc13
1 changed files with 2 additions and 2 deletions

View File

@ -21,9 +21,9 @@ Object subclass: MGCPTrunkBase [
<comment: 'I represent a trunk for a Gateway'>
<category: 'MGCP-Callagent'>
MGCPTrunkBase class >> initialize [
MGCPTrunkBase class >> new [
<category: 'creation'>
^ self new
^ super new
initialize;
yourself
]