Skip to content

Commit

Permalink
Minor alterations to object types string conversion
Browse files Browse the repository at this point in the history
Signed-off-by: TheSilkMiner <thesilkminer@outlook.com>
  • Loading branch information
TheSilkMiner committed May 21, 2022
1 parent bfb9b9b commit cdbc232
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public Class<T> type() {

@Override
public String toString() {
return "[%s]{%s}".formatted(this.id().location(), this.type().getName());
return "%s{%s}".formatted(this.id().location(), this.type().getName());
}
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public Class<?> type() {

@Override
public String toString() {
return "[%s]{?}".formatted(this.id().location());
return "%s{?}".formatted(this.id().location());
}
}

Expand Down

0 comments on commit cdbc232

Please sign in to comment.