Skip to content

Commit 2f74974

Browse files
committed
refactor: add method return type to MapEverywhere
1 parent 7b9913d commit 2f74974

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)