Skip to content

Commit

Permalink
isExtension wasn't being initialized
Browse files Browse the repository at this point in the history
There is a corresponding server fix
  • Loading branch information
Eric Winger authored and Eric Winger committed May 26, 2022
1 parent 841cf88 commit c6db89b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions sources/RowanMethodService.cls
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,9 @@ initialize
breakPoints := OrderedCollection new.
hasSupers := false.
hasSubs := false.
hasMethodHistory := true. !
hasMethodHistory := true.
isExtension := false.
inSelectedPackage := true!

inSelectedPackage

Expand All @@ -287,9 +289,6 @@ inSelectedPackage: anObject
isExtension
^isExtension!

isExtension: anObject
isExtension := anObject!

isMethodService

^true!
Expand Down Expand Up @@ -637,7 +636,6 @@ initialize!initialization!public! !
inSelectedPackage!public!testing! !
inSelectedPackage:!accessing!public! !
isExtension!accessing!public! !
isExtension:!accessing!public! !
isMethodService!public!testing! !
isReadOnly!public!testing! !
isTestMethod!public!testing! !
Expand Down

0 comments on commit c6db89b

Please sign in to comment.