[Pixelle-commit] SF.net SVN: pixelle:[299] trunk/pixelle/src/com/mebigfatguy/pixelle/ AlgorithmArch
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-09-05 21:41:31
|
Revision: 299
http://pixelle.svn.sourceforge.net/pixelle/?rev=299&view=rev
Author: dbrosius
Date: 2009-09-05 21:41:22 +0000 (Sat, 05 Sep 2009)
Log Message:
-----------
make sure streams get closed
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/AlgorithmArchiver.java
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/AlgorithmArchiver.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/AlgorithmArchiver.java 2009-08-18 00:28:31 UTC (rev 298)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/AlgorithmArchiver.java 2009-09-05 21:41:22 UTC (rev 299)
@@ -255,7 +255,7 @@
pw.flush();
}
finally {
- pw.close();
+ Closer.close(pw);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|