Skip to content

Commit

Permalink
Merge pull request #1430 from marschall/all-working-copies
Browse files Browse the repository at this point in the history
Fix MCWorkingCopy deprecations
  • Loading branch information
jbrichau authored Jul 13, 2024
2 parents 9ae0073 + f353dba commit c637ccb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ sortedWorkingCopies
| categories packageNames workingCopies |
categories := Dictionary new.
packageNames := GRPackage grPackages collect: [ :each | each name ].
workingCopies := MCWorkingCopy allManagers select: [ :each | packageNames includes: each packageName ].
workingCopies := ((MCWorkingCopy respondsTo: #allWorkingCopies)
ifTrue: [ MCWorkingCopy allWorkingCopies ]
ifFalse: [ MCWorkingCopy allManagers ])
select: [ :each | packageNames includes: each packageName ].
workingCopies do:
[ :each |
| category |
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SystemOrganization addCategory: #'Seaside-Pharo-Tools-Web'!
self packageOrganizer ensurePackage: #'Seaside-Pharo-Tools-Web' withTags: #()!

0 comments on commit c637ccb

Please sign in to comment.