From 12ea1cb5ddbdf56169e3aeed0c91cdc467c31284 Mon Sep 17 00:00:00 2001 From: Virtually Nick Date: Mon, 6 May 2019 16:29:03 -0400 Subject: [PATCH] GUACAMOLE-422: Document valid timezone values for setting timezone. --- .../apache/guacamole/protocol/GuacamoleClientInformation.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleClientInformation.java b/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleClientInformation.java index 65d7ad7eb..524eac8f4 100644 --- a/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleClientInformation.java +++ b/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleClientInformation.java @@ -167,7 +167,9 @@ public class GuacamoleClientInformation { * database format. * * @param timezone - * The string value of the timezone reported by the client. + * The string value of the timezone reported by the client, in tz + * database format, or null if the timezone is not provided by the + * client. */ public void setTimezone(String timezone) { this.timezone = timezone;