Repository: marmotta Updated Branches: refs/heads/develop ab2d47a30 -> 5daafbb94
MARMOTTA-616: fixed typo Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/5daafbb9 Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/5daafbb9 Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/5daafbb9 Branch: refs/heads/develop Commit: 5daafbb9463c0de9949c4c50d8e2b68935664470 Parents: ab2d47a Author: Sergio Fernández <[email protected]> Authored: Mon Sep 14 19:19:48 2015 +0200 Committer: Sergio Fernández <[email protected]> Committed: Mon Sep 14 19:19:48 2015 +0200 ---------------------------------------------------------------------- .../platform/core/services/config/ConfigurationServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/marmotta/blob/5daafbb9/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/services/config/ConfigurationServiceImpl.java ---------------------------------------------------------------------- diff --git a/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/services/config/ConfigurationServiceImpl.java b/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/services/config/ConfigurationServiceImpl.java index ed7b294..e32dc5f 100644 --- a/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/services/config/ConfigurationServiceImpl.java +++ b/platform/marmotta-core/src/main/java/org/apache/marmotta/platform/core/services/config/ConfigurationServiceImpl.java @@ -378,7 +378,7 @@ public class ConfigurationServiceImpl implements ConfigurationService { if (db_type.equals("h2")) { config.setProperty("database.url", "jdbc:h2:" + getHome() + "/db/marmotta;MVCC=true;DB_CLOSE_ON_EXIT=FALSE;DB_CLOSE_DELAY=10"); config.setProperty("database.user", "sa"); - config.setProperty("database.password", "sa");; + config.setProperty("database.password", "sa"); } config.setProperty("kiwi.setup.database", true); }
