aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcampbeb <bpcampbell@gmail.com>2013-01-11 21:20:43 -1000
committercampbeb <bpcampbell@gmail.com>2013-01-11 21:20:43 -1000
commit58adae46e67867b269ba8b6130f7bfa637fa242e (patch)
tree421f97357eb9170935d206f4539dfb28bf17a87d
parent1508d8fae8418dce99ab5e9b058f6589d5b4c078 (diff)
downloadcgeo-58adae46e67867b269ba8b6130f7bfa637fa242e.zip
cgeo-58adae46e67867b269ba8b6130f7bfa637fa242e.tar.gz
cgeo-58adae46e67867b269ba8b6130f7bfa637fa242e.tar.bz2
Remove empty loop accidentally entered when cleaning up
-rw-r--r--main/src/cgeo/geocaching/cgData.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/cgData.java b/main/src/cgeo/geocaching/cgData.java
index b9adafe..3ec1d14 100644
--- a/main/src/cgeo/geocaching/cgData.java
+++ b/main/src/cgeo/geocaching/cgData.java
@@ -1515,7 +1515,7 @@ public class cgData {
cacheCache.putCacheInCache(cache);
caches.add(cache);
- } while (cursor.moveToNext());
+ }
return caches;
} finally {
cursor.close();