You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2017/12/18 05:31:20 UTC

[09/10] ant git commit: make things work on OS with non-UTF8 default encoding

make things work on OS with non-UTF8 default encoding


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/246bc2bb
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/246bc2bb
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/246bc2bb

Branch: refs/heads/master
Commit: 246bc2bb280b290327bde0797dd11846bdd02fba
Parents: afc99e7
Author: Stefan Bodewig <bo...@apache.org>
Authored: Mon Dec 18 06:20:53 2017 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Mon Dec 18 06:20:53 2017 +0100

----------------------------------------------------------------------
 src/main/org/apache/tools/ant/taskdefs/Zip.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/246bc2bb/src/main/org/apache/tools/ant/taskdefs/Zip.java
----------------------------------------------------------------------
diff --git a/src/main/org/apache/tools/ant/taskdefs/Zip.java b/src/main/org/apache/tools/ant/taskdefs/Zip.java
index ba31bb4..b8e3604 100644
--- a/src/main/org/apache/tools/ant/taskdefs/Zip.java
+++ b/src/main/org/apache/tools/ant/taskdefs/Zip.java
@@ -601,10 +601,10 @@ public class Zip extends MatchingTask {
     /**
      * Set all stored file modification times to {@code time}.
      * @param time Milliseconds since 1970-01-01 00:00, or
-     *        <code>YYYY-MM-DD{T/ }HH:MM[:SS[.SSS]][ ][±ZZ[[:]ZZ]]</code>, or
+     *        <code>YYYY-MM-DD{T/ }HH:MM[:SS[.SSS]][ ][\u00b1ZZ[[:]ZZ]]</code>, or
      *        <code>MM/DD/YYYY HH:MM[:SS] {AM/PM}</code>, where {a/b} indicates
      *        that you must choose one of a or b, and [c] indicates that you
-     *        may use or omit c. ±ZZZZ is the timezone offset, and may be
+     *        may use or omit c. \u00b1ZZZZ is the timezone offset, and may be
      *        literally "Z" to mean GMT.
      * @since Ant 1.9.10
      */