aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/ui/OwnerActionsClickListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/ui/OwnerActionsClickListener.java')
-rw-r--r--main/src/cgeo/geocaching/ui/OwnerActionsClickListener.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/ui/OwnerActionsClickListener.java b/main/src/cgeo/geocaching/ui/OwnerActionsClickListener.java
index acd43cb..9aa6bec 100644
--- a/main/src/cgeo/geocaching/ui/OwnerActionsClickListener.java
+++ b/main/src/cgeo/geocaching/ui/OwnerActionsClickListener.java
@@ -15,13 +15,13 @@ public class OwnerActionsClickListener extends AbstractUserClickListener {
private final Geocache cache;
- public OwnerActionsClickListener(Geocache cache) {
+ public OwnerActionsClickListener(final Geocache cache) {
super(ConnectorFactory.getConnector(cache).getUserActions());
this.cache = cache;
}
@Override
- protected String getUserName(View view) {
+ protected String getUserName(final View view) {
// Use real owner name vice the one owner chose to display
if (StringUtils.isNotBlank(cache.getOwnerUserId())) {
return cache.getOwnerUserId();