mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +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
|
||||
* the rest.
|
||||
*
|
||||
* @param object
|
||||
* The generic Connection object to be copied.
|
||||
* @param connection
|
||||
* 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;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user