mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
Fix parameter order of UserPermission constructor.
This commit is contained in:
@@ -65,7 +65,7 @@ public class UserPermission implements ObjectPermission<String> {
|
||||
* @param identifier The username of the User associated with the operation
|
||||
* affected by this permission.
|
||||
*/
|
||||
public UserPermission(String identifier, Type type) {
|
||||
public UserPermission(Type type, String identifier) {
|
||||
|
||||
this.identifier = identifier;
|
||||
this.type = type;
|
||||
|
Reference in New Issue
Block a user