Commit f06c3966 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed error where a statement was closed twice. JM-896

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6099 b35dd754-fafc-0310-a699-88a17e54d16e
parent c0f5026e
......@@ -320,6 +320,7 @@ public class RosterItemProvider {
rs.close();
// Close the prepared statement
pstmt.close();
pstmt = null;
}
}
catch (SQLException e) {
......
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