mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-38: Fix use of superclass methods.
This commit is contained in:
@@ -54,9 +54,10 @@ public class QuickConnectionGroup extends AbstractConnectionGroup {
|
|||||||
*/
|
*/
|
||||||
public QuickConnectionGroup(String name, String identifier) {
|
public QuickConnectionGroup(String name, String identifier) {
|
||||||
|
|
||||||
setName(name);
|
super();
|
||||||
setIdentifier(identifier);
|
super.setName(name);
|
||||||
setType(ConnectionGroup.Type.ORGANIZATIONAL);
|
super.setIdentifier(identifier);
|
||||||
|
super.setType(ConnectionGroup.Type.ORGANIZATIONAL);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user