Skip to content

Commit 3f618ba

Browse files
committed
fixed issue with function name mistyped
1 parent 1339585 commit 3f618ba

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

cls/SourceControl/Git/Change.cls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,3 +217,4 @@ Storage Default
217217
}
218218

219219
}
220+

cls/SourceControl/Git/Utils.cls

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ ClassMethod AddToSourceControl(InternalName As %String) As %Status
531531
continue
532532
}
533533

534-
if (settings.mappedItemsReadOnly && FileIsMapped(InternalName)) {
534+
if (settings.mappedItemsReadOnly && ..FileIsMapped(InternalName)) {
535535
continue
536536
}
537537

@@ -1710,8 +1710,9 @@ ClassMethod UserTypeCached(Name As %String, ByRef Class As %String, ByRef Studio
17101710
}
17111711

17121712
/// Determines whether or not a file is mapped to another database
1713-
ClassMethod FileIsMapped(Name As %String) As %Boolean {
1714-
Quit ##class(%RoutineMgr).IsMapped(Name)
1713+
ClassMethod FileIsMapped(InternalName As %String) As %Boolean
1714+
{
1715+
Quit ##class(%RoutineMgr).IsMapped(InternalName)
17151716
}
17161717

17171718
/*

0 commit comments

Comments
 (0)