File tree 1 file changed +25
-0
lines changed
src/Commander2-Deprecations
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ Extension { #name : #CmCommandGroupDecorator }
2
+
3
+ { #category : #' *Commander2-Deprecations' }
4
+ CmCommandGroupDecorator >> basicDescription [
5
+ self deprecated: ' Use #description instead.' transformWith: ' `@receiver basicDescription' - > ' `@receiver description' .
6
+ ^ self description
7
+ ]
8
+
9
+ { #category : #' *Commander2-Deprecations' }
10
+ CmCommandGroupDecorator >> basicDescription: anObject [
11
+ self deprecated: ' Use #description: instead.' transformWith: ' `@receiver basicDescription: `@arg' - > ' `@receiver description: `@arg' .
12
+ ^ self description: anObject
13
+ ]
14
+
15
+ { #category : #' *Commander2-Deprecations' }
16
+ CmCommandGroupDecorator >> basicName [
17
+ self deprecated: ' Use #name instead.' transformWith: ' `@receiver basicName' - > ' `@receiver name' .
18
+ ^ self name
19
+ ]
20
+
21
+ { #category : #' *Commander2-Deprecations' }
22
+ CmCommandGroupDecorator >> basicName: anObject [
23
+ self deprecated: ' Use #name: instead.' transformWith: ' `@receiver basicName: `@arg' - > ' `@receiver name: `@arg' .
24
+ ^ self name: anObject
25
+ ]
You can’t perform that action at this time.
0 commit comments