Skip to content

Commit

Permalink
Merge pull request #1719 from jecisc/do-not-use-global-organizer
Browse files Browse the repository at this point in the history
Do not use `RPackage organizer`
  • Loading branch information
MarcusDenker authored Aug 7, 2023
2 parents d5f3d1e + 37d02b6 commit a7d36bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Iceberg-TipUI/IcePackageDefinition.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Extension { #name : #IcePackageDefinition }
IcePackageDefinition >> browse [
"Open a browser on the package, if it exists."

(RPackage organizer packageNamed: name ifAbsent: [ ^ self ]) browse
(self packageOrganizer packageNamed: name ifAbsent: [ ^ self ]) browse
]

{ #category : #'*Iceberg-TipUI' }
Expand Down
7 changes: 3 additions & 4 deletions Iceberg/IceCritiquesVisitor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,10 @@ IceCritiquesVisitor >> visitNoModification: anIceNoModification [
]

{ #category : #visiting }
IceCritiquesVisitor >> visitPackage: anIcePackageDefinition [
IceCritiquesVisitor >> visitPackage: anIcePackageDefinition [

| aPackage |

aPackage := RPackage organizer packageNamed: anIcePackageDefinition name ifAbsent: [ ^ self ].
aPackage := self packageOrganizer packageNamed: anIcePackageDefinition name ifAbsent: [ ^ self ].
critiques addAll: aPackage critiques
]

Expand Down

0 comments on commit a7d36bd

Please sign in to comment.