next line continue

This commit is contained in:
Eric Milles 2026-06-16 12:52:59 -05:00
parent 0ccdad9b8c
commit 1bc11cd09c
Failed to extract signature
1 changed files with 3 additions and 1 deletions

View File

@ -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>");