You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2014/02/16 16:32:37 UTC

git commit: Small improvement on comments in formatTimestamp.

Repository: maven
Updated Branches:
  refs/heads/master fe4751605 -> 0afed871f


Small improvement on comments in formatTimestamp.


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/0afed871
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/0afed871
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/0afed871

Branch: refs/heads/master
Commit: 0afed871f24b19666ac08f411b9b92394ad92540
Parents: fe47516
Author: Michael Osipov <mi...@apache.org>
Authored: Sun Feb 16 16:31:42 2014 +0100
Committer: Michael Osipov <mi...@apache.org>
Committed: Sun Feb 16 16:31:42 2014 +0100

----------------------------------------------------------------------
 .../src/main/java/org/apache/maven/cli/CLIReportingUtils.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/0afed871/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java
----------------------------------------------------------------------
diff --git a/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java b/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java
index 32f8cca..37773c1 100644
--- a/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java
+++ b/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java
@@ -151,7 +151,7 @@ public final class CLIReportingUtils
 
     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();
         int offset = tz.getRawOffset();