Revert "Close FileChannels in UpdateHandler#copyFile."
am: 4b46e71163

* commit '4b46e711632f6e5d868e6d84a6211384d37e1911':
  Revert "Close FileChannels in UpdateHandler#copyFile."
diff --git a/java/src/com/android/inputmethod/dictionarypack/UpdateHandler.java b/java/src/com/android/inputmethod/dictionarypack/UpdateHandler.java
index 6b32c68..0517bc8 100644
--- a/java/src/com/android/inputmethod/dictionarypack/UpdateHandler.java
+++ b/java/src/com/android/inputmethod/dictionarypack/UpdateHandler.java
@@ -689,16 +689,8 @@
         } else {
             try {
                 final FileChannel sourceChannel = ((FileInputStream) in).getChannel();
-                try {
-                    final FileChannel destinationChannel = ((FileOutputStream) out).getChannel();
-                    try {
-                        sourceChannel.transferTo(0, Integer.MAX_VALUE, destinationChannel);
-                    } finally {
-                        destinationChannel.close();
-                    }
-                } finally {
-                    sourceChannel.close();
-                }
+                final FileChannel destinationChannel = ((FileOutputStream) out).getChannel();
+                sourceChannel.transferTo(0, Integer.MAX_VALUE, destinationChannel);
             } catch (IOException e) {
                 // Can't work with channels, or something went wrong. Copy by hand.
                 DebugLogUtils.l("Won't work");