Skip to content

Commit

Permalink
Add ConnectorObjectReference#toString method (BASE-91) (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly authored Sep 25, 2024
1 parent af82990 commit ea9b689
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,9 @@ public boolean hasObject() {
public BaseConnectorObject getValue() {
return Objects.requireNonNull(value);
}

@Override
public String toString() {
return this.getClass().getSimpleName() + ": " + value;
}
}

0 comments on commit ea9b689

Please sign in to comment.