Skip to content

Commit cc328ac

Browse files
committed
removed debugging globals
1 parent 74c4c31 commit cc328ac

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

cls/SourceControl/Git/Utils.cls

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,6 @@ ClassMethod SyncIrisWithRepoThroughCommand(ByRef outStream) As %Status
16791679
while (outStream.AtEnd = 0) {
16801680

16811681
set line = outStream.ReadLine()
1682-
set ^mtempz($i(^mtempz)) = line
16831682
set lineStart = $piece(line, " ", 2)
16841683
if (lineStart = "delete") || (lineStart = "create") {
16851684
set fileOperation = $select(lineStart = "create" : "A", 1: "D")
@@ -1701,8 +1700,6 @@ ClassMethod SyncIrisWithRepoThroughCommand(ByRef outStream) As %Status
17011700
set deletedFiles = $extract(deletedFiles, 2, *)
17021701
set addedFiles = $extract(addedFiles, 2, *)
17031702

1704-
set ^mtemphw("addedFiles", $i(^mtemphw("addedFiles"))) = addedFiles
1705-
set ^mtemphw("deletedFiles", $i(^mtemphw("deletedFiles"))) = deletedFiles
17061703

17071704
if (deletedFiles '= ""){
17081705
set sc = ##class(SourceControl.Git.Utils).RemoveFromServerSideSourceControl(deletedFiles)
@@ -1720,7 +1717,6 @@ ClassMethod SyncIrisWithRepoThroughCommand(ByRef outStream) As %Status
17201717

17211718
ClassMethod SyncIrisWithRepoThroughDiff(ByRef files) As %Status
17221719
{
1723-
set ^mtempz($i(^mtempz)) = "here"
17241720
set key = $order(files(""))
17251721
set deletedFiles = ""
17261722
set addedFiles = ""

0 commit comments

Comments
 (0)