aboutsummaryrefslogtreecommitdiffstats
path: root/GSM48.st
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-09-09 17:08:16 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-09-09 17:08:16 +0200
commiteb859ad14e26a911b59f45f189061958d4acb72a (patch)
tree030bf477362037ff0890bed75a8f037258a0c49e /GSM48.st
parent048b1c0109f1688e827f767ed69aa458b6f76311 (diff)
gsm48: Use category and not comment in these methods.
Diffstat (limited to 'GSM48.st')
-rw-r--r--GSM48.st4
1 files changed, 2 insertions, 2 deletions
diff --git a/GSM48.st b/GSM48.st
index 9479ad8..430b420 100644
--- a/GSM48.st
+++ b/GSM48.st
@@ -1616,13 +1616,13 @@ Osmo.TLVParserBase subclass: GSM48MSG [
]
GSM48MSG class >> addMandatory: aName with: aClass [
- <comment: 'creation'>
+ <category: 'creation'>
self addVariable: aName.
self compile: '%1 [ ^ %1 ifNil: [%1 := %2 createDefault.]]' % {aName asString. aClass}.
]
GSM48MSG class >> addOptional: aName with: aClass [
- <comment: 'creation'>
+ <category: 'creation'>
self addVariable: aName.
self compile: '%1 [ ^ %1 ]' % {aName asString}.