Polishing

This commit is contained in:
Sam Brannen
2023-03-13 21:16:02 +01:00
parent 9cf7b0e230
commit b617e16d8d
10 changed files with 22 additions and 34 deletions

View File

@@ -61,7 +61,7 @@ public class SimpleTimeZoneAwareLocaleContext extends SimpleLocaleContext implem
@Override
public String toString() {
return super.toString() + " " + (this.timeZone != null ? this.timeZone.toString() : "-");
return super.toString() + " " + (this.timeZone != null ? this.timeZone : "-");
}
}