Skip to content

Commit

Permalink
Fix formatting and javadoc issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed Sep 5, 2023
1 parent 1ac8be5 commit 94b9244
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

/**
* Populates Aether {@link ArtifactDescriptorResult} from Maven project {@link Model}.
* <p/>
* <p>
* <strong>Note:</strong> This class is part of work in progress and can be changed or removed without notice.
* @since 3.2.4
*/
Expand Down Expand Up @@ -95,8 +95,8 @@ private Dependency convert(org.apache.maven.model.Dependency dependency, Artifac
stereotype = new DefaultArtifactType(dependency.getType());
}

boolean system =
dependency.getSystemPath() != null && !dependency.getSystemPath().isEmpty();
boolean system = dependency.getSystemPath() != null
&& !dependency.getSystemPath().isEmpty();

Map<String, String> props = null;
if (system) {
Expand Down

0 comments on commit 94b9244

Please sign in to comment.