Can you send PR with a fix?
On Mon, Feb 10, 2014 at 9:34 AM, Galder Zamarreño <galder(a)redhat.com> wrote:
Actually, split/join does not work with JDK7. The following code
seems to
work with both:
name = name.split(".").join("/");
if (name) {
self.log("Use JDK8 method to build module names");
} else {
name = attributes.get("name");
name = name.replace(".", "/");
self.log("Use JDK7 method to build module names");
}
Cheers,