diff options
| -rw-r--r-- | main/src/cgeo/geocaching/files/LocalStorage.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/files/LocalStorage.java b/main/src/cgeo/geocaching/files/LocalStorage.java index 57f586e..e7e8a1c 100644 --- a/main/src/cgeo/geocaching/files/LocalStorage.java +++ b/main/src/cgeo/geocaching/files/LocalStorage.java @@ -296,10 +296,9 @@ public final class LocalStorage { output = new BufferedOutputStream(new FileOutputStream(destination)); } catch (FileNotFoundException e) { Log.e("LocalStorage.copy: could not open file", e); - return false; - } finally { IOUtils.closeQuietly(input); IOUtils.closeQuietly(output); + return false; } boolean copyDone = copy(input, output); |
