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

misc: Make code more portable by using "self basicNew initialize"

This commit is contained in:
Holger Hans Peter Freyther 2014-07-24 15:49:29 +02:00
parent 4e38ef3ece
commit 88c8005597
2 changed files with 2 additions and 6 deletions

View File

@ -30,9 +30,7 @@ SIPAuthorization subclass: SIPProxyAuthorization [
]
SIPProxyAuthorization class >> new [
^super new
initialize;
yourself
^self basicNew initialize
]
initialize [

View File

@ -23,9 +23,7 @@ SIPUserAgentBase subclass: SIPUserAgent [
SIPUserAgent class >> new [
<category: 'creation'>
^ super new
initialize;
yourself
^self basicNew initialize
]
initialize [