Small improvement on comments in formatTimestamp.

This commit is contained in:
Michael Osipov 2014-02-16 16:31:42 +01:00
parent fe4751605c
commit 0afed871f2
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ public final class CLIReportingUtils
public static String formatTimestamp( long timestamp ) public static String formatTimestamp( long timestamp )
{ {
// Manual construction of the tz offset because only Java 7 understands 'ZZ' replacement // Manual construction of the tz offset because only Java 7 is aware of ISO 8601 time zones
TimeZone tz = TimeZone.getDefault(); TimeZone tz = TimeZone.getDefault();
int offset = tz.getRawOffset(); int offset = tz.getRawOffset();