Signed-off-by:Roland Häder <roland@mxchange.org>
--- /dev/null
+#!/bin/sh
+
+LIST=`find ../*/lib/jcore.jar`
+
+for entry in ${LIST};
+do
+ cp -v dist/jcore.jar ${entry}
+done
// Search for proper field instance
for (final Field field : fields) {
+ // Is a dollar character there?
+ if (field.getName().startsWith("$")) {
+ // Debug message
+ this.getLogger().debug("Field name " + field.getName() + " starts with a dollar, skipped.");
+ // Skip this
+ continue;
+ }
+
// Debug message
this.getLogger().debug(MessageFormat.format("field.getName()={0},fieldName={1}", field.getName(), fieldName)); //NOI18N