mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-38: Fix parameter name in QuickConnection constructor.
This commit is contained in:
@@ -70,14 +70,16 @@ public class QuickConnection extends SimpleConnection {
|
|||||||
* object, copying over the relevant data and initializing
|
* object, copying over the relevant data and initializing
|
||||||
* the rest.
|
* the rest.
|
||||||
*
|
*
|
||||||
* @param object
|
* @param connection
|
||||||
* The generic Connection object to be copied.
|
* The generic Connection to be copied.
|
||||||
*/
|
*/
|
||||||
public QuickConnection(Connection object) {
|
public QuickConnection(Connection connection) {
|
||||||
|
|
||||||
super(object.getName(),object.getIdentifier(),object.getConfiguration());
|
super(connection.getName(),connection.getIdentifier(),
|
||||||
|
connection.getConfiguration());
|
||||||
|
|
||||||
|
setParentIdentifier(connection.getParentIdentifier());
|
||||||
|
|
||||||
setParentIdentifier(object.getParentIdentifier());
|
|
||||||
this.activeConnections = 0;
|
this.activeConnections = 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user