aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/enumerations/CacheAttribute.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2013-09-13 09:30:03 +0200
committerSamuel Tardieu <sam@rfc1149.net>2013-09-13 09:46:36 +0200
commit1682653cd798bfab721cd1bd53cecf5a90ca98b2 (patch)
tree0c0dacff7e5f801523f4e0f9c764745fd7dd2fee /main/src/cgeo/geocaching/enumerations/CacheAttribute.java
parent48f881c71cb3ea50794c83d9d2ada091fc6c86c2 (diff)
downloadcgeo-1682653cd798bfab721cd1bd53cecf5a90ca98b2.zip
cgeo-1682653cd798bfab721cd1bd53cecf5a90ca98b2.tar.gz
cgeo-1682653cd798bfab721cd1bd53cecf5a90ca98b2.tar.bz2
refactoring: cgeoapplication -> CgeoApplication
Diffstat (limited to 'main/src/cgeo/geocaching/enumerations/CacheAttribute.java')
-rw-r--r--main/src/cgeo/geocaching/enumerations/CacheAttribute.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/enumerations/CacheAttribute.java b/main/src/cgeo/geocaching/enumerations/CacheAttribute.java
index 243f63d..1ddfeaf 100644
--- a/main/src/cgeo/geocaching/enumerations/CacheAttribute.java
+++ b/main/src/cgeo/geocaching/enumerations/CacheAttribute.java
@@ -1,7 +1,7 @@
package cgeo.geocaching.enumerations;
import cgeo.geocaching.R;
-import cgeo.geocaching.cgeoapplication;
+import cgeo.geocaching.CgeoApplication;
import org.apache.commons.lang3.StringUtils;
@@ -143,7 +143,7 @@ public enum CacheAttribute {
* @return the localized text
*/
public String getL10n(final boolean enabled) {
- return cgeoapplication.getInstance().getResources().getString(
+ return CgeoApplication.getInstance().getResources().getString(
enabled ? stringIdYes : stringIdNo);
}