This is an automated email from the git hooks/post-receive script. New commit to branch feature/657_update_to_flyway_5 in repository topia. See https://gitlab.nuiton.org/nuiton/topia.git commit 9e1a38ffb76180243a132ef22c44519c899b6c84 Author: Brendan Le Ny <bleny@codelutin.com> Date: Mon Jan 8 15:25:21 2018 +0100 Remove pointless modifiers in flyway module --- .../src/main/java/org/nuiton/topia/flyway/TopiaFlywayService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/topia-service-flyway/src/main/java/org/nuiton/topia/flyway/TopiaFlywayService.java b/topia-service-flyway/src/main/java/org/nuiton/topia/flyway/TopiaFlywayService.java index 6173cf73..a6879442 100644 --- a/topia-service-flyway/src/main/java/org/nuiton/topia/flyway/TopiaFlywayService.java +++ b/topia-service-flyway/src/main/java/org/nuiton/topia/flyway/TopiaFlywayService.java @@ -37,19 +37,19 @@ public interface TopiaFlywayService extends TopiaMigrationService { * @deprecated use {@link #FLYWAY_BASELINE_VERSION} */ @Deprecated - public static final String FLYWAY_INIT_VERSION = "flyway.initVersion"; + String FLYWAY_INIT_VERSION = "flyway.initVersion"; /** * If you want flyway to init with an already existing DB, you must use * this configuration and give, as value the version of the already * existing schema. */ - public static final String FLYWAY_BASELINE_VERSION = "flyway.baselineVersion"; + String FLYWAY_BASELINE_VERSION = "flyway.baselineVersion"; /** * Tells ToPIA to set (or not) the Flyway's target version from the model version. Expected values are "true" or * "false". The default one is "true". */ - public static final String USE_MODEL_VERSION = "useModelVersion"; + String USE_MODEL_VERSION = "useModelVersion"; } -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.