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

Messages: Remove the DataIE place holder

Right now we always want to decode everything. If we end up
with performance issues we might re-introduce this class.
This commit is contained in:
Holger Hans Peter Freyther 2010-11-27 13:47:57 +01:00
parent afd83ce445
commit 78f8718004
1 changed files with 0 additions and 31 deletions

View File

@ -19,37 +19,6 @@ Object subclass: IEBase [
]
]
Object subclass: DataIE [
| data |
<category: 'osmo-messages'>
DataIE class >> initWith: aData [
^ self new
data: aData;
yourself
]
type [
^ data at: 1
]
type: aType [
data at: 1 put: aType.
]
data [
^ data
]
data: aData [
data := aData.
]
writeOn: aMsg [
aMsg putByteArray: data.
]
]
Object subclass: IEMessage [
<category: 'osmo-messages'>
| ies type |