Skip to content

Commit

Permalink
fixed issue with function name mistyped
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-hwojnick committed May 31, 2024
1 parent 1339585 commit 3f618ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions cls/SourceControl/Git/Change.cls
Original file line number Diff line number Diff line change
Expand Up @@ -217,3 +217,4 @@ Storage Default
}

}

7 changes: 4 additions & 3 deletions cls/SourceControl/Git/Utils.cls
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ ClassMethod AddToSourceControl(InternalName As %String) As %Status
continue
}

if (settings.mappedItemsReadOnly && FileIsMapped(InternalName)) {
if (settings.mappedItemsReadOnly && ..FileIsMapped(InternalName)) {
continue
}

Expand Down Expand Up @@ -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)
}

/*
Expand Down

0 comments on commit 3f618ba

Please sign in to comment.