mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-422: Clarify behavior of atLeast().
This commit is contained in:
@@ -127,16 +127,15 @@ public class GuacamoleProtocolVersion {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether or not this object is greater than or equal to the
|
* Returns whether this GuacamoleProtocolVersion is at least as recent as
|
||||||
* the version passed in to the method. Returns a boolean true if the
|
* (greater than or equal to) the given version.
|
||||||
* version is the same as or greater than the other version, otherwise
|
|
||||||
* false.
|
|
||||||
*
|
*
|
||||||
* @param otherVersion
|
* @param otherVersion
|
||||||
* The version to which this object should be compared.
|
* The version to which this GuacamoleProtocolVersion should be compared.
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
* True if this object is greater than or equal to the other version.
|
* true if this object is at least as recent as the given version,
|
||||||
|
* false if the given version is newer.
|
||||||
*/
|
*/
|
||||||
public boolean atLeast(GuacamoleProtocolVersion otherVersion) {
|
public boolean atLeast(GuacamoleProtocolVersion otherVersion) {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user