diff --git a/cls/SourceControl/Git/Change.cls b/cls/SourceControl/Git/Change.cls index e6b1e2e6..e8001143 100644 --- a/cls/SourceControl/Git/Change.cls +++ b/cls/SourceControl/Git/Change.cls @@ -217,3 +217,4 @@ Storage Default } } + diff --git a/cls/SourceControl/Git/Utils.cls b/cls/SourceControl/Git/Utils.cls index 4338fbf9..c9babee2 100644 --- a/cls/SourceControl/Git/Utils.cls +++ b/cls/SourceControl/Git/Utils.cls @@ -531,7 +531,7 @@ ClassMethod AddToSourceControl(InternalName As %String) As %Status continue } - if (settings.mappedItemsReadOnly && FileIsMapped(InternalName)) { + if (settings.mappedItemsReadOnly && ..FileIsMapped(InternalName)) { continue } @@ -1710,8 +1710,9 @@ ClassMethod UserTypeCached(Name As %String, ByRef Class As %String, ByRef Studio } /// Determines whether or not a file is mapped to another database -ClassMethod FileIsMapped(Name As %String) As %Boolean { - Quit ##class(%RoutineMgr).IsMapped(Name) +ClassMethod FileIsMapped(InternalName As %String) As %Boolean +{ + Quit ##class(%RoutineMgr).IsMapped(InternalName) } /*