diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2014-09-09 13:52:19 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2014-09-09 13:52:53 +0200 |
| commit | 789130734996ee989e534d7b841fc71a23063002 (patch) | |
| tree | 2013ecc34e7f21bc59b52c0e5ef6f9ddaf270ea0 /main/src/cgeo/geocaching/SelectMapfileActivity.java | |
| parent | f68437aa50c15bc8d2958589fdc4f38c1a79a38c (diff) | |
| download | cgeo-789130734996ee989e534d7b841fc71a23063002.zip cgeo-789130734996ee989e534d7b841fc71a23063002.tar.gz cgeo-789130734996ee989e534d7b841fc71a23063002.tar.bz2 | |
Name ignored catch parameter as such
Diffstat (limited to 'main/src/cgeo/geocaching/SelectMapfileActivity.java')
| -rw-r--r-- | main/src/cgeo/geocaching/SelectMapfileActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/SelectMapfileActivity.java b/main/src/cgeo/geocaching/SelectMapfileActivity.java index da41250..697f609 100644 --- a/main/src/cgeo/geocaching/SelectMapfileActivity.java +++ b/main/src/cgeo/geocaching/SelectMapfileActivity.java @@ -53,7 +53,7 @@ public class SelectMapfileActivity extends AbstractFileListActivity<FileSelectio dirChooser.putExtra(FileManagerIntents.EXTRA_BUTTON_TEXT, getString(android.R.string.ok)); startActivityForResult(dirChooser, REQUEST_DIRECTORY); - } catch (android.content.ActivityNotFoundException ex) { + } catch (android.content.ActivityNotFoundException ignored) { // OI file manager not available final Intent dirChooser = new Intent(SelectMapfileActivity.this, SimpleDirChooser.class); dirChooser.putExtra(Intents.EXTRA_START_DIR, LocalStorage.getStorage().getAbsolutePath()); |
