Fixed Environment.Named.toString().
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
parent
4e6575b994
commit
714d2a4ac9
|
@ -127,7 +127,7 @@ public interface Environment extends Attributes
|
|||
@Override
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue