Commit 026f4a74 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

[JM-1366] Reverting bad fix.


git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10418 b35dd754-fafc-0310-a699-88a17e54d16e
parent 277b10ea
......@@ -155,7 +155,10 @@ public class HttpSession extends LocalClientSession {
* on the session ID.
*/
public void close() {
closeConnection();
if (isClosed) {
return;
}
conn.close();
}
/**
......@@ -664,8 +667,6 @@ public class HttpSession extends LocalClientSession {
}
isClosed = true;
conn.close();
if (pendingElements.size() > 0) {
failDelivery();
}
......
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