diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2013-02-05 12:46:02 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-02-05 12:46:02 +0000 |
commit | ddac09070a3ce49fca6768a155da14d7fbb214d0 (patch) | |
tree | aed72e8a3e5063d35588968ebdc5b3dc83def0a9 /server/src | |
parent | 67aa9e47d65fccf46319e9c09c6e4221db8d2c49 (diff) | |
parent | 64562625e3c74e022113b8601fc69fc54689011e (diff) | |
download | vaadin-framework-ddac09070a3ce49fca6768a155da14d7fbb214d0.tar.gz vaadin-framework-ddac09070a3ce49fca6768a155da14d7fbb214d0.zip |
Merge "Merge of a Javadoc fix to Vaadin 7." into 7.0
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/com/vaadin/server/WebBrowser.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/src/com/vaadin/server/WebBrowser.java b/server/src/com/vaadin/server/WebBrowser.java index ca0e4cd6ce..4122f053ae 100644 --- a/server/src/com/vaadin/server/WebBrowser.java +++ b/server/src/com/vaadin/server/WebBrowser.java @@ -293,19 +293,19 @@ public class WebBrowser implements Serializable { } /** - * Gets the difference in minutes between the browser's GMT TimeZone and + * Returns the offset in milliseconds between the browser's GMT TimeZone and * DST. * - * @return the amount of minutes that the TimeZone shifts when DST is in - * effect + * @return the number of milliseconds that the TimeZone shifts when DST is + * in effect */ public int getDSTSavings() { return dstSavings; } /** - * Determines whether daylight savings time (DST) is currently in effect in - * the region of the browser or not. + * Returns whether daylight saving time (DST) is currently in effect in the + * region of the browser or not. * * @return true if the browser resides at a location that currently is in * DST |