Skip to content

Commit 3dff3a1

Browse files
committed
Added toString() to ParamI18N
1 parent b23a406 commit 3dff3a1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

fj-core/src/main/java/org/fugerit/java/core/util/i18n/ParamI18N.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,9 @@ public static ParamI18N newParamI18N( String key ) {
1616
return new ParamI18N( key );
1717
}
1818

19+
@Override
20+
public String toString() {
21+
return this.getClass().getSimpleName()+"[key:"+this.getKey()+"]";
22+
}
23+
1924
}

0 commit comments

Comments
 (0)