From ed7a99a11b61462b4e071c38b2f398a4bd357610 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Mon, 6 May 2019 11:58:59 -0400 Subject: [PATCH] GUACAMOLE-422: More documentation updates. --- .../protocol/GuacamoleProtocolVersion.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleProtocolVersion.java b/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleProtocolVersion.java index 8be7ac629..d72b2b6c2 100644 --- a/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleProtocolVersion.java +++ b/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleProtocolVersion.java @@ -77,29 +77,30 @@ public enum GuacamoleProtocolVersion { } /** - * Return the major version number. + * Return the major version component of the protocol version. * * @return - * The integer major version. + * The integer major version component. */ public int getMajor() { return major; } /** - * Return the minor version number. + * Return the minor version component of the protocol version. * * @return - * The integer minor version. + * The integer minor version component. */ public int getMinor() { return minor; } /** - * Return the patch version number. + * Return the patch version component of the protocol version. + * * @return - * The integer patch version. + * The integer patch version component. */ public int getPatch() { return patch;