diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2014-03-06 00:04:32 +0100 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2014-03-06 00:04:32 +0100 |
| commit | 2fac90e7b808f19eabf25c01a924e75944228f40 (patch) | |
| tree | 02cdc043015976092c5287ffc77955bc7b2af967 /main | |
| parent | 913cdb2fe67fafffd4b3c6ed077d4d2f0f4e99ef (diff) | |
| download | cgeo-2fac90e7b808f19eabf25c01a924e75944228f40.zip cgeo-2fac90e7b808f19eabf25c01a924e75944228f40.tar.gz cgeo-2fac90e7b808f19eabf25c01a924e75944228f40.tar.bz2 | |
Fix java warnings
Diffstat (limited to 'main')
| -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 */ |
