Skip to content

Commit

Permalink
Missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Oct 12, 2023
1 parent 70d9ae7 commit cf81567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Hermes-Ring2/HERing2ToHermesBuilder.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ HERing2ToHermesBuilder >> compileMethod: aRGMethod [
environment: aRGMethod environment;
yourself.
self flag: #pharo11. "When Pharo12 will be the minimal version, remove the need of this condition."
SystemVersion current major > 12 ifTrue: [ compiler permitUndeclared: true ].
SystemVersion current major >= 12 ifTrue: [ compiler permitUndeclared: true ].

compiler compile
^ compiler compile
]

{ #category : 'visiting' }
Expand Down

0 comments on commit cf81567

Please sign in to comment.