diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2012-04-20 11:38:25 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2012-04-20 13:02:28 +0200 |
| commit | 18a0f72d4f6435e91d759b6226f9665eecb38949 (patch) | |
| tree | 40880a8af3d41b0a26b5387c1971c141458e0ecf /main/src/cgeo/geocaching/export/FieldnoteExport.java | |
| parent | c77cc3cf5362c359997e430285953eff854b88a5 (diff) | |
| download | cgeo-18a0f72d4f6435e91d759b6226f9665eecb38949.zip cgeo-18a0f72d4f6435e91d759b6226f9665eecb38949.tar.gz cgeo-18a0f72d4f6435e91d759b6226f9665eecb38949.tar.bz2 | |
Refactoring: use viewports where appropriate
Diffstat (limited to 'main/src/cgeo/geocaching/export/FieldnoteExport.java')
| -rw-r--r-- | main/src/cgeo/geocaching/export/FieldnoteExport.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/export/FieldnoteExport.java b/main/src/cgeo/geocaching/export/FieldnoteExport.java index 32c9943..05fb828 100644 --- a/main/src/cgeo/geocaching/export/FieldnoteExport.java +++ b/main/src/cgeo/geocaching/export/FieldnoteExport.java @@ -1,8 +1,8 @@ package cgeo.geocaching.export; +import cgeo.geocaching.LogEntry; import cgeo.geocaching.R; import cgeo.geocaching.cgCache; -import cgeo.geocaching.LogEntry; import cgeo.geocaching.cgeoapplication; import cgeo.geocaching.activity.ActivityMixin; import cgeo.geocaching.activity.Progress; @@ -89,7 +89,6 @@ class FieldnoteExport extends AbstractExport { private class ExportTask extends AsyncTask<Void, Integer, Boolean> { private final List<cgCache> caches; private final Activity activity; - private final boolean upload; private final boolean onlyNew; private final Progress progress = new Progress(); private File exportFile; @@ -111,7 +110,6 @@ class FieldnoteExport extends AbstractExport { public ExportTask(final List<cgCache> caches, final Activity activity, final boolean upload, final boolean onlyNew) { this.caches = caches; this.activity = activity; - this.upload = upload; this.onlyNew = onlyNew; } |
