Skip to content

Commit

Permalink
Minor change to toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-brandizi committed Mar 14, 2024
1 parent 389c97f commit 996bf74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public Object merge ( String key, Object value, BiFunction<? super Object, ? sup
@Override
public String toString ()
{
return this.getClass ().getSimpleName () + base.toString ();
return "[" + this.getClass ().getSimpleName () + "] " + base.toString ();
}

}

0 comments on commit 996bf74

Please sign in to comment.