[Pixelle-commit] SF.net SVN: pixelle:[300] trunk/pixelle/src/com/mebigfatguy/pixelle/ AlgorithmArch
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-09-05 21:44:19
|
Revision: 300
http://pixelle.svn.sourceforge.net/pixelle/?rev=300&view=rev
Author: dbrosius
Date: 2009-09-05 21:44:13 +0000 (Sat, 05 Sep 2009)
Log Message:
-----------
don't declare throwing what isn't thrown
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-09-05 21:41:22 UTC (rev 299)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/AlgorithmArchiver.java 2009-09-05 21:44:13 UTC (rev 300)
@@ -224,7 +224,7 @@
}
- private void writeAlgorithms(OutputStream is, Map<ImageType, Map<String, Map<String, Map<PixelleComponent, String>>>> algorithms) throws IOException {
+ private void writeAlgorithms(OutputStream is, Map<ImageType, Map<String, Map<String, Map<PixelleComponent, String>>>> algorithms) {
PrintWriter pw = null;
try {
pw = new PrintWriter(new OutputStreamWriter(is));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|