From 6c866ac05826ca41a85da7f9ea1bd20f5731d519 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 30 Jan 2013 02:15:21 -0800 Subject: [PATCH] Fix parameter order of UserPermission constructor. --- .../guacamole/net/auth/permission/UserPermission.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/permission/UserPermission.java b/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/permission/UserPermission.java index f8c33903c..bfe2b9fad 100644 --- a/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/permission/UserPermission.java +++ b/guacamole-ext/src/main/java/net/sourceforge/guacamole/net/auth/permission/UserPermission.java @@ -65,7 +65,7 @@ public class UserPermission implements ObjectPermission { * @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;