Skip to content

Commit

Permalink
Fix calls of unimplemented methods
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusDoe committed Oct 13, 2024
1 parent 9b64782 commit 8ea5deb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ importing
checkForMissingHead
self headCommit ifNotNil: [^ self].
{'main'. 'master'} do: [:each |
(self unitOfWork resolveRef: (self gitBranchName: each)) ifNotNilDo: [:target |
self updateHeadTo: target.
(self unitOfWork objectReferenced: (self gitBranchName: each)) ifNotNil: [:commit |
self updateSymbolicHeadTo: commit.
^ self]].
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"changeSetsToMergeCommitIntoHead:withBase:" : "mad 10/7/2024 17:35",
"changeSetsToMergeFSCommit:into:withBase:" : "mad 10/7/2024 17:26",
"checkCanDeleteRef:" : "mad 10/16/2023 22:52",
"checkForMissingHead" : "mad 3/19/2024 21:45",
"checkForMissingHead" : "mad 10/13/2024 22:59",
"checkRefExists:displayName:" : "mad 10/16/2023 21:31",
"checkoutReflogMessageTo:" : "mad 11/30/2023 13:19",
"chooseRemoteName" : "mad 10/16/2023 20:48",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ instance creation
tryMCRepositoryNamed: aString
| directory workingCopy fileSystem |
directory := self scanForMCRepositoryDirectory: aString ifAbsent: [^ nil].
workingCopy := GSBaseWorkingCopy newWithName: aString.
workingCopy := GSBaseWorkingCopy newWithNameAndRegister: aString.
fileSystem := GSSubFileSystem onReference: directory.
workingCopy mappers:
(workingCopy metadataMapper loadMappersFromFileSystem: fileSystem).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"for:basePath:" : "mad 11/21/2023 14:27",
"forWorkingCopy:" : "mad 10/6/2024 22:35",
"scanForMCRepositoryDirectory:ifAbsent:" : "mad 10/9/2024 17:04",
"tryMCRepositoryNamed:" : "mad 10/9/2024 16:01",
"tryMCRepositoryNamed:" : "mad 10/11/2024 20:08",
"tryNamed:from:" : "mad 10/6/2024 22:36" },
"instance" : {
"assetFSPaths" : "mad 10/6/2024 22:34",
Expand Down

0 comments on commit 8ea5deb

Please sign in to comment.