WICKET-6003 utc offsets are in hours
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/4e7a6057 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/4e7a6057 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/4e7a6057 Branch: refs/heads/lambdas Commit: 4e7a60577af0da01c843f92067bc1ca8ad712633 Parents: ba809b3 Author: Sven Meier <[email protected]> Authored: Fri Oct 16 19:40:55 2015 +0200 Committer: Sven Meier <[email protected]> Committed: Fri Oct 16 19:40:55 2015 +0200 ---------------------------------------------------------------------- .../java/org/apache/wicket/protocol/http/ClientProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/4e7a6057/wicket-core/src/main/java/org/apache/wicket/protocol/http/ClientProperties.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/protocol/http/ClientProperties.java b/wicket-core/src/main/java/org/apache/wicket/protocol/http/ClientProperties.java index f3a646f..b566708 100644 --- a/wicket-core/src/main/java/org/apache/wicket/protocol/http/ClientProperties.java +++ b/wicket-core/src/main/java/org/apache/wicket/protocol/http/ClientProperties.java @@ -333,7 +333,7 @@ public class ClientProperties implements IClusterable } /** - * @return The client's time DST offset from UTC in minutes (note: if you do this yourself, use + * @return The client's time DST offset from UTC in hours (note: if you do this yourself, use * 'new Date(new Date().getFullYear(), 0, 6, 0, 0, 0, 0).getTimezoneOffset() / -60' * (note the -)). */ @@ -344,7 +344,7 @@ public class ClientProperties implements IClusterable /** - * @return The client's time offset from UTC in minutes (note: if you do this yourself, use 'new + * @return The client's time offset from UTC in hours (note: if you do this yourself, use 'new * Date(new Date().getFullYear(), 0, 1, 0, 0, 0, 0).getTimezoneOffset() / -60' (note the * -)). */
