diff options
| -rw-r--r-- | main/src/cgeo/geocaching/DataStore.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/DataStore.java b/main/src/cgeo/geocaching/DataStore.java index bf040f4..a7e3745 100644 --- a/main/src/cgeo/geocaching/DataStore.java +++ b/main/src/cgeo/geocaching/DataStore.java @@ -2176,7 +2176,7 @@ public class DataStore { } } catch (final Exception e) { Log.e("DataStore.loadBatchOfStoredGeocodes", e); - return Collections.EMPTY_SET; + return Collections.emptySet(); } } @@ -2207,7 +2207,7 @@ public class DataStore { Log.e("DataStore.loadBatchOfHistoricGeocodes", e); } - return Collections.EMPTY_SET; + return Collections.emptySet(); } /** Retrieve all stored caches from DB */ |
