From e7bf4dea27b750108b84c79413b3cea608087ee4 Mon Sep 17 00:00:00 2001 From: nroulon Date: Tue, 20 Sep 2022 18:01:55 +0200 Subject: [PATCH] feat: #167 Wrong or bad descriptions in DatamaintainDriver --- .../datamaintain/core/db/driver/DatamaintainDriver.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/core/src/main/kotlin/datamaintain/core/db/driver/DatamaintainDriver.kt b/modules/core/src/main/kotlin/datamaintain/core/db/driver/DatamaintainDriver.kt index 1fbee8d9..5d32187a 100644 --- a/modules/core/src/main/kotlin/datamaintain/core/db/driver/DatamaintainDriver.kt +++ b/modules/core/src/main/kotlin/datamaintain/core/db/driver/DatamaintainDriver.kt @@ -13,17 +13,17 @@ abstract class DatamaintainDriver(protected val uri: String) { abstract fun listExecutedScripts(): Sequence /** - * Executes the given script and inserts its execution in the database + * Executes the given script */ abstract fun executeScript(script: ScriptWithContent): Execution /** - * Does not execute the given script, only inserts its execution in the database + * Inserts script execution in the database */ abstract fun markAsExecuted(executedScript: ExecutedScript): ExecutedScript /** - * Does not execute the given script, only update its execution in the database + * Update script execution in the database */ abstract fun overrideScript(executedScript: ExecutedScript): ExecutedScript }