Skip to content

Commit

Permalink
Merge 7fc13bb
Browse files Browse the repository at this point in the history
  • Loading branch information
refactoringdr committed Sep 23, 2024
2 parents a33ade2 + 7fc13bb commit bb0e0ea
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/GToolkit4Git/PureGitRepository.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,13 @@ PureGitRepository >> gtFilesFor: composite [
BlTaskAction
enqueueElement: element
action: [ element phlow
spawnObject: ((PureGitFile inRepository: self)
path: (item value relativeTo: self location) pathString;
yourself) ] ];
spawnObject: (self resolveFileReference: item value) ] ];
contextItemLabel: 'Inspect file reference'
action: [ :element :item |
BlTaskAction
enqueueElement: element
action: [ element phlow spawnObject: item value ] ];
send: [ :each |
(PureGitFile inRepository: self)
path: (each value relativeTo: self location) pathString;
yourself ]
send: [ :each | self resolveFileReference: each value ]
]

{ #category : #'*GToolkit4Git' }
Expand Down

0 comments on commit bb0e0ea

Please sign in to comment.