Index: Application/Ringtoets/src/Application.Ringtoets.Storage/StorageSqLite.cs =================================================================== diff -u -r5969ec704a34c08bc99fb44f826f7b89e19340de -r062281754a35164e1095479c9f1ccb8ee821f939 --- Application/Ringtoets/src/Application.Ringtoets.Storage/StorageSqLite.cs (.../StorageSqLite.cs) (revision 5969ec704a34c08bc99fb44f826f7b89e19340de) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/StorageSqLite.cs (.../StorageSqLite.cs) (revision 062281754a35164e1095479c9f1ccb8ee821f939) @@ -204,18 +204,6 @@ } } - private ProjectEntity GetSingleProject(RingtoetsEntities dbContext) - { - try - { - return dbContext.ProjectEntities.Single(); - } - catch (InvalidOperationException) - { - return null; - } - } - public bool HasChanges(Project project) { if (string.IsNullOrWhiteSpace(connectionString)) @@ -239,6 +227,18 @@ } } + private ProjectEntity GetSingleProject(RingtoetsEntities dbContext) + { + try + { + return dbContext.ProjectEntities.Single(); + } + catch (InvalidOperationException) + { + return null; + } + } + /// /// Throws a configured instance of when writing to the storage file failed. ///