aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/keychain-api-library/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/keychain-api-library/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java')
-rw-r--r--libraries/keychain-api-library/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/libraries/keychain-api-library/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java b/libraries/keychain-api-library/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java
index 75d4b8c18..3569caf5b 100644
--- a/libraries/keychain-api-library/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java
+++ b/libraries/keychain-api-library/src/org/openintents/openpgp/util/ParcelFileDescriptorUtil.java
@@ -18,7 +18,6 @@
package org.openintents.openpgp.util;
import android.os.ParcelFileDescriptor;
-import android.util.Log;
import java.io.IOException;
import java.io.InputStream;
@@ -82,21 +81,21 @@ public class ParcelFileDescriptorUtil {
}
mOut.flush(); // just to be safe
} catch (IOException e) {
- Log.e(OpenPgpConstants.TAG, "TransferThread" + getId() + ": writing failed", e);
+ //Log.e(OpenPgpConstants.TAG, "TransferThread" + getId() + ": writing failed", e);
} finally {
try {
mIn.close();
} catch (IOException e) {
- Log.e(OpenPgpConstants.TAG, "TransferThread" + getId(), e);
+ //Log.e(OpenPgpConstants.TAG, "TransferThread" + getId(), e);
}
try {
mOut.close();
} catch (IOException e) {
- Log.e(OpenPgpConstants.TAG, "TransferThread" + getId(), e);
+ //Log.e(OpenPgpConstants.TAG, "TransferThread" + getId(), e);
}
}
if (mListener != null) {
- Log.d(OpenPgpConstants.TAG, "TransferThread " + getId() + " finished!");
+ //Log.d(OpenPgpConstants.TAG, "TransferThread " + getId() + " finished!");
mListener.onThreadFinished(this);
}
}