aboutsummaryrefslogtreecommitdiff
path: root/src/github/daneren2005
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-08-21 10:32:44 -0700
committerScott Jackson <daneren2005@gmail.com>2014-08-21 10:32:44 -0700
commit98a42524d42353e058a3f71e5be11b242f43e88c (patch)
tree8e06c64eb4ffffc35115fc6b005a53c65e9bfeeb /src/github/daneren2005
parent5a639da5d71f6dbe8a5609f103c6d19ff621f7a0 (diff)
downloaddsub-98a42524d42353e058a3f71e5be11b242f43e88c.tar.gz
dsub-98a42524d42353e058a3f71e5be11b242f43e88c.tar.bz2
dsub-98a42524d42353e058a3f71e5be11b242f43e88c.zip
Remove stack trace from deserialization, never usable anyways
Diffstat (limited to 'src/github/daneren2005')
-rw-r--r--src/github/daneren2005/dsub/util/FileUtil.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/util/FileUtil.java b/src/github/daneren2005/dsub/util/FileUtil.java
index 304541b6..6c116dce 100644
--- a/src/github/daneren2005/dsub/util/FileUtil.java
+++ b/src/github/daneren2005/dsub/util/FileUtil.java
@@ -619,7 +619,7 @@ public class FileUtil {
Log.w(TAG, "No serialization for object from " + fileName);
return null;
} catch (Throwable x) {
- Log.w(TAG, "Failed to deserialize object from " + fileName, x);
+ Log.w(TAG, "Failed to deserialize object from " + fileName);
return null;
} finally {
Util.close(in);
@@ -659,7 +659,7 @@ public class FileUtil {
Log.w(TAG, "No serialization compressed for object from " + fileName);
return null;
} catch (Throwable x) {
- Log.w(TAG, "Failed to deserialize compressed object from " + fileName, x);
+ Log.w(TAG, "Failed to deserialize compressed object from " + fileName);
return null;
} finally {
Util.close(in);