aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo
diff options
context:
space:
mode:
authorMichael Keppler <michael.keppler@gmx.de>2014-04-19 09:45:49 +0200
committerMichael Keppler <michael.keppler@gmx.de>2014-04-19 09:45:49 +0200
commit9fa96b63ab13377b6be3052f6ecbeadb170e9bdc (patch)
tree78a32f4ce37ff694b52c72cfa2457df325efb7e6 /main/src/cgeo
parent0c5c7f9c751b2b8ef1d6c5a6dfa9dc3741d0a9ed (diff)
downloadcgeo-9fa96b63ab13377b6be3052f6ecbeadb170e9bdc.zip
cgeo-9fa96b63ab13377b6be3052f6ecbeadb170e9bdc.tar.gz
cgeo-9fa96b63ab13377b6be3052f6ecbeadb170e9bdc.tar.bz2
fix some compiler warnings
Diffstat (limited to 'main/src/cgeo')
-rw-r--r--main/src/cgeo/geocaching/utils/ImageUtils.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/utils/ImageUtils.java b/main/src/cgeo/geocaching/utils/ImageUtils.java
index e226703..ffb7bf3 100644
--- a/main/src/cgeo/geocaching/utils/ImageUtils.java
+++ b/main/src/cgeo/geocaching/utils/ImageUtils.java
@@ -273,9 +273,11 @@ public final class ImageUtils {
/**
* Decode a base64-encoded string and save the result into a stream.
- *
- * @param inString the encoded string
- * @param outFile the file to save the decoded result into
+ *
+ * @param inString
+ * the encoded string
+ * @param out
+ * the stream to save the decoded result into
*/
public static void decodeBase64ToStream(final String inString, final OutputStream out) throws IOException {
Base64InputStream in = null;