Commit 9f52f41c authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Minor fix.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@827 b35dd754-fafc-0310-a699-88a17e54d16e
parent 952f0fa9
...@@ -196,7 +196,7 @@ public class ConnectionPool implements Runnable { ...@@ -196,7 +196,7 @@ public class ConnectionPool implements Runnable {
} }
// check to see if there's any currently open connections to close // check to see if there's any currently open connections to close
for (int i = 0; i <= conCount; i++) { for (int i = 0; i < conCount; i++) {
ConnectionWrapper wrapper = wrappers[i]; ConnectionWrapper wrapper = wrappers[i];
// null means that the connection hasn't been initialized, which will only occur // null means that the connection hasn't been initialized, which will only occur
......
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