Skip to content

Commit

Permalink
Add missing toString override, closes #562
Browse files Browse the repository at this point in the history
  • Loading branch information
Mumfrey committed May 12, 2024
1 parent 1accf3f commit 480bd3d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ IPropertyKey resolve(IGlobalPropertyService service) {

return this.key = service.resolveKey(this.name);
}

@Override
public String toString() {
return this.name;
}

/**
* Get or create a new global property key
Expand Down

0 comments on commit 480bd3d

Please sign in to comment.