diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-08-21 10:32:44 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-08-21 10:32:44 -0700 |
commit | 98a42524d42353e058a3f71e5be11b242f43e88c (patch) | |
tree | 8e06c64eb4ffffc35115fc6b005a53c65e9bfeeb /src/github | |
parent | 5a639da5d71f6dbe8a5609f103c6d19ff621f7a0 (diff) | |
download | dsub-98a42524d42353e058a3f71e5be11b242f43e88c.tar.gz dsub-98a42524d42353e058a3f71e5be11b242f43e88c.tar.bz2 dsub-98a42524d42353e058a3f71e5be11b242f43e88c.zip |
Remove stack trace from deserialization, never usable anyways
Diffstat (limited to 'src/github')
-rw-r--r-- | src/github/daneren2005/dsub/util/FileUtil.java | 4 |
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); |