Commit 6f510e51 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Removed UnauthorizedException as a thrown exception in methods that was being used for ACL.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@489 b35dd754-fafc-0310-a699-88a17e54d16e
parent 4b2ba31f
...@@ -292,13 +292,8 @@ public class IQAdminHandler { ...@@ -292,13 +292,8 @@ public class IQAdminHandler {
} }
// Send the updated presences to the room occupants // Send the updated presences to the room occupants
try { for (Presence presence : presences) {
for (Presence presence : presences) { room.send(presence);
room.send(presence);
}
}
catch (UnauthorizedException e) {
// Do nothing
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment