]> git.mxchange.org Git - jcore.git/blobdiff - src/org/mxchange/jcore/BaseFrameworkSystem.java
Changed to SortedSet to keep ordering
[jcore.git] / src / org / mxchange / jcore / BaseFrameworkSystem.java
index 8d117424bb5a04a829db9215f07a39f896bdbd85..b48ad50e49d6a32faf7699efc7e860a0cfc2e47b 100644 (file)
@@ -1237,9 +1237,9 @@ public class BaseFrameworkSystem implements FrameworkInterface {
                // Search for proper field instance
                for (final Field field : fields) {
                        // Is a dollar character there?
-                       if (field.getName().startsWith("$")) {
+                       if (field.getName().startsWith("$")) { //NOI18N
                                // Debug message
-                               this.getLogger().debug("Field name " + field.getName() +  " starts with a dollar, skipped.");
+                               this.getLogger().debug(MessageFormat.format("Field name {0} starts with a dollar, skipped.", field.getName())); //NOI18N
                                // Skip this
                                continue;
                        }