Commit 41346444 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Do last write before closing writer (JM-153).


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@937 b35dd754-fafc-0310-a699-88a17e54d16e
parent be0006c8
......@@ -89,9 +89,8 @@ public class AuditorImpl implements Auditor {
if (xmlWriter != null) {
try {
xmlWriter.flush();
xmlWriter.close();
writer.write("</jive>");
writer.close();
xmlWriter.close();
writer = null;
}
catch (Exception 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