aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/utils
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2014-07-24 13:26:58 +0200
committerSamuel Tardieu <sam@rfc1149.net>2014-07-24 13:26:58 +0200
commit08f1ef630ec64e33ca2a319e1ba0a1d7199e7c60 (patch)
treea81fea0d9bb23fafc9b4bb087f98627a8c34d2e4 /main/src/cgeo/geocaching/utils
parenta6442dbefa12726396b48591a063433c851dae8f (diff)
downloadcgeo-08f1ef630ec64e33ca2a319e1ba0a1d7199e7c60.zip
cgeo-08f1ef630ec64e33ca2a319e1ba0a1d7199e7c60.tar.gz
cgeo-08f1ef630ec64e33ca2a319e1ba0a1d7199e7c60.tar.bz2
Add missing serialVersionUID field on exception
Diffstat (limited to 'main/src/cgeo/geocaching/utils')
-rw-r--r--main/src/cgeo/geocaching/utils/Log.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/utils/Log.java b/main/src/cgeo/geocaching/utils/Log.java
index e0f63e0..f338a8e 100644
--- a/main/src/cgeo/geocaching/utils/Log.java
+++ b/main/src/cgeo/geocaching/utils/Log.java
@@ -16,7 +16,9 @@ public final class Log {
private static final String TAG = "cgeo";
- private static final class StackTraceDebug extends RuntimeException {}
+ private static final class StackTraceDebug extends RuntimeException {
+ final static private long serialVersionUID = 27058374L;
+ }
/**
* The debug flag is cached here so that we don't need to access the settings every time we have to evaluate it.