aboutsummaryrefslogtreecommitdiffstats
path: root/main/src
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2012-04-22 00:43:58 +0200
committerSamuel Tardieu <sam@rfc1149.net>2012-04-22 00:43:58 +0200
commite1b08a4d49aac08f97e04dede4b58ebf2550fc64 (patch)
treebced1b2762dc9ea3a3473b0293c2181a1e140a37 /main/src
parentb4270c5a89005bb484f175e13cdce6264b650a51 (diff)
downloadcgeo-e1b08a4d49aac08f97e04dede4b58ebf2550fc64.zip
cgeo-e1b08a4d49aac08f97e04dede4b58ebf2550fc64.tar.gz
cgeo-e1b08a4d49aac08f97e04dede4b58ebf2550fc64.tar.bz2
Refactoring: variable cannot be null at this point
Diffstat (limited to 'main/src')
-rw-r--r--main/src/cgeo/geocaching/cgeotouch.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/cgeotouch.java b/main/src/cgeo/geocaching/cgeotouch.java
index 2e446c1..01d7117 100644
--- a/main/src/cgeo/geocaching/cgeotouch.java
+++ b/main/src/cgeo/geocaching/cgeotouch.java
@@ -140,7 +140,7 @@ public class cgeotouch extends AbstractActivity implements DateDialog.DateDialog
app.setAction("logging trackable");
- if (trackable == null || guid == null) {
+ if (guid == null) {
showToast(res.getString(R.string.err_tb_forgot_saw));
finish();