Remove Language

This commit is contained in:
Jonathan Jenne
2023-10-13 11:07:55 +02:00
parent 348d054e16
commit e402cdaf5c
30 changed files with 21 additions and 830 deletions

View File

@@ -2,6 +2,7 @@
Imports DigitalData.Modules.Logging
Imports DigitalData.Modules.Windream
Imports DigitalData.Modules.Language
Imports DigitalData.Modules.Base
Public Class ConnectionBuilder
Implements IConnectionBuilder
@@ -64,9 +65,9 @@ Public Class ConnectionBuilder
End Function
Public Function WithWindreamObjectsOrDriveLetter(BasePath As String, DriveLetter As String) As IConnectionBuilder Implements IConnectionBuilder.WithWindreamObjectsOrDriveLetter
If Utils.NotNull(BasePath, Nothing) IsNot Nothing Then
If ObjectEx.NotNull(BasePath, Nothing) IsNot Nothing Then
Return WithWindreamObjects(BasePath)
ElseIf Utils.NotNull(DriveLetter, Nothing) IsNot Nothing Then
ElseIf ObjectEx.NotNull(DriveLetter, Nothing) IsNot Nothing Then
Return WithDriveLetter(DriveLetter)
Else
Return WithWindreamObjects()