Skip to content

Commit

Permalink
Mutant pharo-project#492, Reverting [ Replace #and: argument with [tr…
Browse files Browse the repository at this point in the history
…ue] ] on method [ shouldRemapOop: ] 51/51 test case are EQUIVALENT
  • Loading branch information
hogoww committed Feb 25, 2022
1 parent 69024a1 commit 9eaac09
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions smalltalksrc/VMMaker/SpurMemoryManager.class.st
Expand Up @@ -11281,13 +11281,12 @@ SpurMemoryManager >> shouldRemapObj: objOop [
{ #category : #'gc - scavenge/compact' }
SpurMemoryManager >> shouldRemapOop: oop [
<api>
"Answer if the oop should be scavenged.. The method is called
shouldRemapOop: for compatibility with ObjectMemory."
<api>
<inline: true>
^ (self isNonImmediate: oop) and: [ true ]
^(self isNonImmediate: oop)
and: [self shouldRemapObj: oop]
]
{ #category : #'simulation only' }
Expand Down

0 comments on commit 9eaac09

Please sign in to comment.