Skip to content

Commit

Permalink
Simplify code
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed May 12, 2023
1 parent 63a14f7 commit 0db6c1a
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,7 @@ private void writeBody(MojoDescriptor mojoDescriptor, XMLWriter w) {
w.writeMarkup(getString("pluginxdoc.mojodescriptor.fullname"));
w.endElement(); // p
w.startElement("p");
w.writeMarkup(mojoDescriptor.getPluginDescriptor().getGroupId() + ":"
+ mojoDescriptor.getPluginDescriptor().getArtifactId() + ":"
+ mojoDescriptor.getPluginDescriptor().getVersion() + ":" + mojoDescriptor.getGoal());
w.writeMarkup(mojoDescriptor.getPluginDescriptor().getId() + ":" + mojoDescriptor.getGoal());
w.endElement(); // p

String context = "goal " + mojoDescriptor.getGoal();
Expand Down

0 comments on commit 0db6c1a

Please sign in to comment.