Skip to content

Commit

Permalink
m2e: Add a toString method override for debugging
Browse files Browse the repository at this point in the history
Signed-off-by: BJ Hargrave <bj@hargrave.dev>
  • Loading branch information
bjhargrave committed Sep 23, 2022
1 parent e1eefb7 commit f8736e7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bndtools.m2e/src/bndtools/m2e/MavenWorkspaceRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,11 @@ public String getName() {
return "Maven Workspace";
}

@Override
public String toString() {
return getName();
}

@Override
public boolean isEmpty() {
return list.get()
Expand Down

0 comments on commit f8736e7

Please sign in to comment.