diff options
Diffstat (limited to 'src/cgeo/geocaching/apps/cache/WhereYouGoApp.java')
| -rw-r--r-- | src/cgeo/geocaching/apps/cache/WhereYouGoApp.java | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java b/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java index 93a86e0..b12a6d1 100644 --- a/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java +++ b/src/cgeo/geocaching/apps/cache/WhereYouGoApp.java @@ -1,16 +1,17 @@ package cgeo.geocaching.apps.cache; -import android.content.res.Resources; import cgeo.geocaching.R; import cgeo.geocaching.cgCache; +import android.content.res.Resources; + class WhereYouGoApp extends AbstractGeneralApp implements GeneralApp { - WhereYouGoApp(Resources res) { - super(res.getString(R.string.cache_menu_whereyougo), "menion.android.whereyougo"); - } + WhereYouGoApp(Resources res) { + super(res.getString(R.string.cache_menu_whereyougo), "menion.android.whereyougo"); + } - @Override - public boolean isEnabled(cgCache cache) { - return cache != null && cache.type != null && cache.type.equalsIgnoreCase("wherigo"); - } + @Override + public boolean isEnabled(cgCache cache) { + return cache != null && cache.type != null && cache.type.equalsIgnoreCase("wherigo"); + } } |
