Skip to content

Commit

Permalink
fix allClassVariables
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-krivanek committed Oct 2, 2019
1 parent 64eb627 commit b9c94f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ring-Core/RGClassStrategy.class.st
Expand Up @@ -44,7 +44,7 @@ RGClassStrategy >> allClassVariables [

^ ((self owner superclass == nil) or: [ self owner superclass == self owner])
ifTrue: [ self classVariables ]
ifFalse: [ self owner superclass allClassVariables, classVariables ]
ifFalse: [ self owner superclass allClassVariables, self classVariables ]
]

{ #category : #'private - backend access' }
Expand Down

0 comments on commit b9c94f9

Please sign in to comment.