Skip to content

Commit

Permalink
Small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Nov 7, 2023
1 parent a0b8d4a commit 7f83f0f
Showing 1 changed file with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,7 @@ public int getColumnNumber() {
public String getLocation() {
StringBuilder buffer = new StringBuilder(256);

if (getSource().length() > 0) {
if (buffer.length() > 0) {
buffer.append(", ");
}
if (!getSource().isEmpty()) {
buffer.append(getSource());
}

Expand Down Expand Up @@ -205,13 +202,6 @@ public List<Exception> getExceptions() {
public Node getRoot() {
return session.getNode(r.getDependencyGraph());
}

// @Override
// public List<ArtifactResolverResult>
// getArtifactResults()
// {
// return Collections.emptyList();
// }
});
}
};
Expand Down

0 comments on commit 7f83f0f

Please sign in to comment.