Skip to content

Commit 7bf670f

Browse files
committed
remove unused argument on parseexternal/internalname
1 parent e9fd878 commit 7bf670f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cls/SourceControl/Git/File.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ClassMethod ExternalNameToInternalName(ExternalName As %String) As %String
4747
}
4848
}
4949
if itemIsPTD && ##class(%Library.EnsembleMgr).IsEnsembleNamespace() {
50-
do ##class(%Studio.SourceControl.Production).ParseExternalName(ExternalName,,.internalName)
50+
do ##class(%Studio.SourceControl.Production).ParseExternalName(ExternalName,.internalName)
5151
} elseif (($data(outName)=1) || ($data(outName) = 11 && ($order(outName(""),-1) = $order(outName(""))))) && ($zconvert(##class(SourceControl.Git.Utils).Type(outName),"U") '= "CSP") {
5252
set internalName = outName
5353
}

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2118,7 +2118,7 @@ ClassMethod Name(InternalName As %String, ByRef MappingExists As %Boolean) As %S
21182118
set InternalName=$extract(InternalName,$length(p)+2,*)
21192119
quit $translate(found_$translate(InternalName,"%","_"),"\","/")
21202120
} elseif (..Type(InternalName) = "ptd") && $$$comClassDefined("%Studio.SourceControl.Production") {
2121-
do ##class(%Studio.SourceControl.Production).ParseInternalName(InternalName,'default,,.filename)
2121+
do ##class(%Studio.SourceControl.Production).ParseInternalName(InternalName,'default,.filename)
21222122
return $translate(found_filename, "\","/")
21232123
} elseif ext="CLS"||(ext="PRJ")||usertype {
21242124
set nam=$replace(nam,"%", ..PercentClassReplace())

0 commit comments

Comments
 (0)