Skip to content

Commit 4cea6ab

Browse files
authored
Merge pull request #773 from intersystems/refactor-772
Add method return type to MapEverywhere
2 parents fdd4928 + 2f74974 commit 4cea6ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cls/SourceControl/Git/API.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ClassMethod BaselineExport(pCommitMessage = "", pPushToRemote = "") As %Status
7070
quit ##class(SourceControl.Git.Utils).BaselineExport(pCommitMessage, pPushToRemote)
7171
}
7272

73-
ClassMethod MapEverywhere()
73+
ClassMethod MapEverywhere() As %Status
7474
{
7575
Quit ##class(SourceControl.Git.Installer).MapEverywhere()
7676
}

cls/SourceControl/Git/Installer.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Class SourceControl.Git.Installer
33
{
44

5-
ClassMethod MapEverywhere()
5+
ClassMethod MapEverywhere() As %Status
66
{
77
set sc = $$$OK
88
try {

0 commit comments

Comments
 (0)