diff options
author | blafoo <github@blafoo.de> | 2011-12-10 23:01:33 +0100 |
---|---|---|
committer | blafoo <github@blafoo.de> | 2011-12-14 20:54:23 +0100 |
commit | cb82f3b623abc87fd9cad60caabad69bec6baf1a (patch) | |
tree | feca1020c57ba34fc9f150fd9d8a75885d0a8c09 /main/src/cgeo/geocaching/ICache.java | |
parent | 57c973b0b890f237a0ba9c2e3209ede3a0c16c1e (diff) | |
download | cgeo-cb82f3b623abc87fd9cad60caabad69bec6baf1a.zip cgeo-cb82f3b623abc87fd9cad60caabad69bec6baf1a.tar.gz cgeo-cb82f3b623abc87fd9cad60caabad69bec6baf1a.tar.bz2 |
Use of Logtype instead of int
Diffstat (limited to 'main/src/cgeo/geocaching/ICache.java')
-rw-r--r-- | main/src/cgeo/geocaching/ICache.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/ICache.java b/main/src/cgeo/geocaching/ICache.java index 4d43e9b..8b0d2aa 100644 --- a/main/src/cgeo/geocaching/ICache.java +++ b/main/src/cgeo/geocaching/ICache.java @@ -3,6 +3,8 @@ */ package cgeo.geocaching; +import cgeo.geocaching.enumerations.LogType; + import java.util.Date; import java.util.List; import java.util.Map; @@ -129,7 +131,7 @@ public interface ICache extends IBasicCache { /** * @return a statistic how often the caches has been found, disabled, archived etc. */ - public Map<Integer, Integer> getLogCounts(); + public Map<LogType, Integer> getLogCounts(); /** * get the name for lexicographical sorting. |