Skip to content

Commit

Permalink
fix the methods to not change
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusDenker committed Mar 16, 2021
1 parent 4418176 commit 94ce112
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Kernel/DoItVariable.class.st
Expand Up @@ -181,27 +181,27 @@ DoItVariable >> key [

{ #category : #'read/write usage' }
DoItVariable >> markEscapingRead [
actualVariable markEscapingRead
"ignored, the escape status of the actualVariable does not change"
]

{ #category : #'read/write usage' }
DoItVariable >> markEscapingWrite [
actualVariable markEscapingWrite
"ignored, the escape status of the actualVariable does not change"
]

{ #category : #'read/write usage' }
DoItVariable >> markRead [
actualVariable markRead
"ignored, the escape status of the actualVariable does not change"
]

{ #category : #'read/write usage' }
DoItVariable >> markRepeatedWrite [
actualVariable markRepeatedWrite
"ignored, the escape status of the actualVariable does not change"
]

{ #category : #'read/write usage' }
DoItVariable >> markWrite [
actualVariable markWrite
"ignored, the escape status of the actualVariable does not change"
]

{ #category : #printing }
Expand Down

0 comments on commit 94ce112

Please sign in to comment.