diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2013-01-23 12:13:47 +0100 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2013-01-23 13:12:28 +0100 |
| commit | 66aa9e5341c73819eb3c0e53330d4e8144f268e2 (patch) | |
| tree | ccd0ba514d61f7ed53e6f128d7c8a5b456555e5b /main/src/cgeo/geocaching/ICache.java | |
| parent | 2253e295e5a6fc1fb40c5dfaed1ce8e00c1e8088 (diff) | |
| download | cgeo-66aa9e5341c73819eb3c0e53330d4e8144f268e2.zip cgeo-66aa9e5341c73819eb3c0e53330d4e8144f268e2.tar.gz cgeo-66aa9e5341c73819eb3c0e53330d4e8144f268e2.tar.bz2 | |
fix #2322: GPX imported caches not marked as owned
The "isOwner()" property (previously named "isOwn()") is now
synthesized by comparing the username with the cache owner name.
Diffstat (limited to 'main/src/cgeo/geocaching/ICache.java')
| -rw-r--r-- | main/src/cgeo/geocaching/ICache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/ICache.java b/main/src/cgeo/geocaching/ICache.java index 8f8baf9..9870534 100644 --- a/main/src/cgeo/geocaching/ICache.java +++ b/main/src/cgeo/geocaching/ICache.java @@ -28,7 +28,7 @@ public interface ICache extends IBasicCache { /** * @return true if the user is the owner of the cache, false else */ - public boolean isOwn(); + public boolean isOwner(); /** * @return true is the cache is archived, false else |
