GUACAMOLE-360: Fix comment typo.

This commit is contained in:
Nick Couchman
2018-06-16 20:22:30 -04:00
parent 77da5f5ac5
commit d2b40e4904

View File

@@ -96,7 +96,7 @@ public class ActiveConnectionPermissionService
String identifier = record.getUUID().toString();
permissions.add(new ObjectPermission(ObjectPermission.Type.READ, identifier));
// If we're and admin, or the connection is ours, then we also have DELETE
// If we're an admin, or the connection is ours, then we can DELETE
if (isAdmin || targetUser.getIdentifier().equals(record.getUsername()))
permissions.add(new ObjectPermission(ObjectPermission.Type.DELETE, identifier));