Fixed Environment.Named.toString().

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
Simone Bordet 2023-06-07 00:11:21 +02:00
parent 4e6575b994
commit 714d2a4ac9
No known key found for this signature in database
GPG Key ID: 1677D141BCF3584D
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ public interface Environment extends Attributes
@Override @Override
public String toString() public String toString()
{ {
return "%s@%s{%s}".formatted(TypeUtil.toShortName(this.getClass()), hashCode(), _name); return "%s@%x{%s}".formatted(TypeUtil.toShortName(this.getClass()), hashCode(), _name);
} }
} }