mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +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
|
* @param identifier The username of the User associated with the operation
|
||||||
* affected by this permission.
|
* affected by this permission.
|
||||||
*/
|
*/
|
||||||
public UserPermission(String identifier, Type type) {
|
public UserPermission(Type type, String identifier) {
|
||||||
|
|
||||||
this.identifier = identifier;
|
this.identifier = identifier;
|
||||||
this.type = type;
|
this.type = type;
|
||||||
|
Reference in New Issue
Block a user