Skip to content

Commit

Permalink
[apache#6235] improvement(authorizations): fix PathBasedMetadataObjec…
Browse files Browse the repository at this point in the history
…t.java toString method

fix some issues.
  • Loading branch information
Abyss-lord committed Jan 16, 2025
1 parent 3df6134 commit 1780dc1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ public int hashCode() {

@Override
public String toString() {
String pathStr = path == null ? "null" : path;
String strPath = path == null ? "null" : path;
return "MetadataObject: [fullName="
+ fullName()
+ "], [path="
+ pathStr
+ strPath
+ "], [type="
+ type
+ "]";
Expand Down

0 comments on commit 1780dc1

Please sign in to comment.