aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2012-04-27 17:34:13 +0200
committerSamuel Tardieu <sam@rfc1149.net>2012-04-27 17:34:13 +0200
commitd009c50262354fc9a2d09ba842db00cfe27cfa01 (patch)
tree37a31eeea095692fc67cf0d3572ff22697881776
parent41bc361c4fec75f43f1cddce6f9b94ba9982f8e5 (diff)
downloadcgeo-d009c50262354fc9a2d09ba842db00cfe27cfa01.zip
cgeo-d009c50262354fc9a2d09ba842db00cfe27cfa01.tar.gz
cgeo-d009c50262354fc9a2d09ba842db00cfe27cfa01.tar.bz2
Refactoring: remove useless field
-rw-r--r--main/src/cgeo/geocaching/cgeocaches.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/main/src/cgeo/geocaching/cgeocaches.java b/main/src/cgeo/geocaching/cgeocaches.java
index c10a596..52a606c 100644
--- a/main/src/cgeo/geocaching/cgeocaches.java
+++ b/main/src/cgeo/geocaching/cgeocaches.java
@@ -145,7 +145,6 @@ public class cgeocaches extends AbstractListActivity implements IObserver<IGeoDa
private long detailProgressTime = 0L;
private LoadDetailsThread threadDetails = null;
private LoadFromWebThread threadWeb = null;
- private DropDetailsThread threadR = null;
private RemoveFromHistoryThread threadH = null;
private int listId = StoredList.TEMPORARY_LIST_ID;
private GeocodeComparator gcComparator = new GeocodeComparator();
@@ -1411,9 +1410,7 @@ public class cgeocaches extends AbstractListActivity implements IObserver<IGeoDa
public void dropSelected() {
progress.show(this, null, res.getString(R.string.caches_drop_progress), true, dropDetailsHandler.obtainMessage(MSG_CANCEL));
-
- threadR = new DropDetailsThread(dropDetailsHandler);
- threadR.start();
+ new DropDetailsThread(dropDetailsHandler).start();
}
@Override