Commit 5d08dc6a authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Removed unused thrown exceptions.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@847 b35dd754-fafc-0310-a699-88a17e54d16e
parent 2f082305
......@@ -11,9 +11,7 @@
package org.jivesoftware.messenger;
import org.jivesoftware.messenger.auth.UnauthorizedException;
import org.jivesoftware.messenger.container.BasicModule;
import org.jivesoftware.messenger.user.UserNotFoundException;
import org.jivesoftware.util.Log;
import org.xmpp.packet.JID;
import org.xmpp.packet.Message;
......@@ -58,7 +56,7 @@ public class OfflineMessageStrategy extends BasicModule {
JiveGlobals.setProperty("xmpp.offline.type", type.toString());
}
public void storeOffline(Message message) throws UnauthorizedException, UserNotFoundException {
public void storeOffline(Message message) {
if (message != null) {
Session senderSession = sessionManager.getSession(message.getFrom());
if (senderSession == null) {
......
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