fix make getcleanedpath public

This commit is contained in:
Jonathan Jenne 2020-05-15 16:02:20 +02:00
parent 9b290cce72
commit 7d8300a1db

View File

@ -172,6 +172,10 @@ Public Class Windream
_sessionDomain = SessionDomain
End Sub
Public Function GetCleanedPath(Path As String) As String
Return Regex.Replace(Path, Constants.REGEX_CLEAN_FILENAME, String.Empty)
End Function
Public Function GetChoiceListItems(ChoiceListName As String) As List(Of String)
Dim oItems As New List(Of String)
Dim oChoicelist As WMObject
@ -1448,10 +1452,6 @@ Public Class Windream
End If
End Function
Private Function GetCleanedPath(Path As String) As String
Return Regex.Replace(Path, Constants.REGEX_CLEAN_FILENAME, String.Empty)
End Function
Private Function GetObjectTypes() As WMObjects
Dim oObjectTypes As WMObjects