mirror of https://github.com/apache/ant-ivy
next line continue
This commit is contained in:
parent
0ccdad9b8c
commit
1bc11cd09c
|
|
@ -380,7 +380,9 @@ public final class PomModuleDescriptorWriter {
|
|||
String groupId = entry.getKey().getAttributes().get("organisation");
|
||||
String version = ((OverrideDependencyDescriptorMediator) entry.getValue()).getVersion();
|
||||
|
||||
if (artifactId == null || artifactId.equals("*") || groupId == null || groupId.equals("*")) continue;
|
||||
if (artifactId == null || artifactId.equals("*") || groupId == null || groupId.equals("*")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
indent(out, indent * 3);
|
||||
out.println("<dependency>");
|
||||
|
|
|
|||
Loading…
Reference in New Issue