From: Roland Haeder Date: Wed, 12 Aug 2015 11:06:39 +0000 (+0200) Subject: Added some comments (ignored string) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ad81a754054bfccfbb4bfd120e6e7185d483c2fe;p=jcore.git Added some comments (ignored string) Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/jcore/BaseFrameworkSystem.java b/src/org/mxchange/jcore/BaseFrameworkSystem.java index 4b959c8..a6e06a2 100644 --- a/src/org/mxchange/jcore/BaseFrameworkSystem.java +++ b/src/org/mxchange/jcore/BaseFrameworkSystem.java @@ -349,7 +349,7 @@ public class BaseFrameworkSystem implements FrameworkInterface { // Init default values: // Default database backend BaseFrameworkSystem.properties.put("org.mxchange.database.backend.class", "org.mxchange.jcore.database.backend.base64.Base64CsvDatabaseBackend"); //NOI18N - BaseFrameworkSystem.properties.put("database.backend.storagepath", "data"); + BaseFrameworkSystem.properties.put("database.backend.storagepath", "data"); //NOI18N // For MySQL backend BaseFrameworkSystem.properties.put("org.mxchange.database.mysql.host", "localhost"); //NOI18N @@ -652,7 +652,7 @@ public class BaseFrameworkSystem implements FrameworkInterface { } // Debug message - this.getLogger().debug(MessageFormat.format("Calling getValueFromColumn({0}) on instance {1} ...", field.getName(), instance)); + this.getLogger().debug(MessageFormat.format("Calling getValueFromColumn({0}) on instance {1} ...", field.getName(), instance)); //NOI18N // Get value from it Object value = instance.getValueFromColumn(field.getName()); @@ -828,13 +828,13 @@ public class BaseFrameworkSystem implements FrameworkInterface { */ protected void setProperty (final String key, final String value) { // Trace message - this.getLogger().trace(MessageFormat.format("key={0},value={1} - CALLED!", key, value)); + this.getLogger().trace(MessageFormat.format("key={0},value={1} - CALLED!", key, value)); //NOI18N // Set it - properties.setProperty(String.format("org.mxchange.%s", key), value); + properties.setProperty(String.format("org.mxchange.%s", key), value); //NOI18N // Trace message - this.getLogger().trace("EXIT!"); + this.getLogger().trace("EXIT!"); //NOI18N } /** @@ -845,12 +845,12 @@ public class BaseFrameworkSystem implements FrameworkInterface { protected String[] getPropertyNames () { // Init array String[] names = { - "database.backend.class", - "database.backend.storagepath", - "database.mysql.login", - "database.mysql.host", - "database.mysql.password", - "database.mysql.dbname", + "database.backend.class", //NOI18N + "database.backend.storagepath", //NOI18N + "database.mysql.login", //NOI18N + "database.mysql.host", //NOI18N + "database.mysql.password", //NOI18N + "database.mysql.dbname", //NOI18N }; // Return it