diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2012-04-22 00:43:58 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2012-04-22 00:43:58 +0200 |
| commit | e1b08a4d49aac08f97e04dede4b58ebf2550fc64 (patch) | |
| tree | bced1b2762dc9ea3a3473b0293c2181a1e140a37 /main/src | |
| parent | b4270c5a89005bb484f175e13cdce6264b650a51 (diff) | |
| download | cgeo-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.java | 2 |
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(); |
