aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/files
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/files')
-rw-r--r--main/src/cgeo/geocaching/files/GPXImporter.java4
-rw-r--r--main/src/cgeo/geocaching/files/GPXParser.java8
-rw-r--r--main/src/cgeo/geocaching/files/LocalStorage.java2
-rw-r--r--main/src/cgeo/geocaching/files/SimpleDirChooser.java2
4 files changed, 8 insertions, 8 deletions
diff --git a/main/src/cgeo/geocaching/files/GPXImporter.java b/main/src/cgeo/geocaching/files/GPXImporter.java
index 4f1d391..e7523f3 100644
--- a/main/src/cgeo/geocaching/files/GPXImporter.java
+++ b/main/src/cgeo/geocaching/files/GPXImporter.java
@@ -211,7 +211,7 @@ public class GPXImporter {
} catch (final ParserException e) {
Log.i("Importing caches failed - data format error", e);
importStepHandler.sendMessage(importStepHandler.obtainMessage(IMPORT_STEP_FINISHED_WITH_ERROR, R.string.gpx_import_error_parser, 0, e.getLocalizedMessage()));
- } catch (final CancellationException e) {
+ } catch (final CancellationException ignored) {
Log.i("Importing caches canceled");
importStepHandler.sendMessage(importStepHandler.obtainMessage(IMPORT_STEP_CANCELED));
} catch (final Exception e) {
@@ -294,7 +294,7 @@ public class GPXImporter {
try {
// try to parse cache file as GPX 10
return doImport(new GPX10Parser(listId));
- } catch (final ParserException pe) {
+ } catch (final ParserException ignored) {
// didn't work -> lets try GPX11
return doImport(new GPX11Parser(listId));
}
diff --git a/main/src/cgeo/geocaching/files/GPXParser.java b/main/src/cgeo/geocaching/files/GPXParser.java
index 1b57908..bedee43 100644
--- a/main/src/cgeo/geocaching/files/GPXParser.java
+++ b/main/src/cgeo/geocaching/files/GPXParser.java
@@ -228,7 +228,7 @@ public abstract class GPXParser extends FileParser {
String stringName;
try {
stringName = CgeoApplication.getInstance().getResources().getResourceName(stringId);
- } catch (final NullPointerException e) {
+ } catch (final NullPointerException ignored) {
return null;
}
if (stringName == null) {
@@ -614,7 +614,7 @@ public abstract class GPXParser extends FileParser {
cache.getAttributes().add(internalId);
}
}
- } catch (final NumberFormatException e) {
+ } catch (final NumberFormatException ignored) {
// nothing
}
}
@@ -717,7 +717,7 @@ public abstract class GPXParser extends FileParser {
if (attrs.getIndex("ref") > -1) {
trackable.setGeocode(attrs.getValue("ref"));
}
- } catch (final RuntimeException e) {
+ } catch (final RuntimeException ignored) {
// nothing
}
}
@@ -761,7 +761,7 @@ public abstract class GPXParser extends FileParser {
if (attrs.getIndex("id") > -1) {
log.id = Integer.parseInt(attrs.getValue("id"));
}
- } catch (final NumberFormatException e) {
+ } catch (final NumberFormatException ignored) {
// nothing
}
}
diff --git a/main/src/cgeo/geocaching/files/LocalStorage.java b/main/src/cgeo/geocaching/files/LocalStorage.java
index 6a510d8..8896833 100644
--- a/main/src/cgeo/geocaching/files/LocalStorage.java
+++ b/main/src/cgeo/geocaching/files/LocalStorage.java
@@ -253,7 +253,7 @@ public final class LocalStorage {
} finally {
f.close();
}
- } catch (final FileNotFoundException e) {
+ } catch (final FileNotFoundException ignored) {
// Do nothing, the file does not exist
} catch (final Exception e) {
Log.w("could not read saved header " + name + " for " + baseFile, e);
diff --git a/main/src/cgeo/geocaching/files/SimpleDirChooser.java b/main/src/cgeo/geocaching/files/SimpleDirChooser.java
index 0139206..687aaa0 100644
--- a/main/src/cgeo/geocaching/files/SimpleDirChooser.java
+++ b/main/src/cgeo/geocaching/files/SimpleDirChooser.java
@@ -142,7 +142,7 @@ public class SimpleDirChooser extends AbstractListActivity {
for (final File currentDir : dirs) {
listDirs.add(new Option(currentDir.getName(), currentDir.getAbsolutePath(), currentDir.canWrite()));
}
- } catch (final RuntimeException e) {
+ } catch (final RuntimeException ignored) {
}
Collections.sort(listDirs, Option.NAME_COMPARATOR);
if (dir.getParent() != null) {