Index: Application/Ringtoets/src/Application.Ringtoets.Storage/StorageSqLite.cs =================================================================== diff -u -r8e5f037ed7df5263d26ba1ada373be196e7a354b -r16bd8076863c03907abeee60b16704aba1bdb1a0 --- Application/Ringtoets/src/Application.Ringtoets.Storage/StorageSqLite.cs (.../StorageSqLite.cs) (revision 8e5f037ed7df5263d26ba1ada373be196e7a354b) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/StorageSqLite.cs (.../StorageSqLite.cs) (revision 16bd8076863c03907abeee60b16704aba1bdb1a0) @@ -250,7 +250,7 @@ /// private static string GetConnectionToExistingFile(string databaseFilePath) { - FileUtils.ValidateFilePath(databaseFilePath); + IOUtils.ValidateFilePath(databaseFilePath); return GetConnectionToFile(databaseFilePath); } @@ -269,7 +269,7 @@ /// private static string GetConnectionToNewFile(string databaseFilePath) { - FileUtils.ValidateFilePath(databaseFilePath); + IOUtils.ValidateFilePath(databaseFilePath); StorageSqliteCreator.CreateDatabaseStructure(databaseFilePath); return GetConnectionToFile(databaseFilePath); }