aboutsummaryrefslogtreecommitdiffstats
path: root/main/src
diff options
context:
space:
mode:
authorMichael Keppler <michael.keppler@etas.com>2015-01-02 23:41:50 +0100
committerMichael Keppler <michael.keppler@etas.com>2015-01-02 23:42:39 +0100
commitb71f47b925e15493c239a42fdaae4b681c893c30 (patch)
treeef246b2842b5da85769a731cd67eae65e7f7a784 /main/src
parent9a58eff9c778ff6ccead71f38c3bb530fc4a1f7f (diff)
downloadcgeo-b71f47b925e15493c239a42fdaae4b681c893c30.zip
cgeo-b71f47b925e15493c239a42fdaae4b681c893c30.tar.gz
cgeo-b71f47b925e15493c239a42fdaae4b681c893c30.tar.bz2
remove unread field
Diffstat (limited to 'main/src')
-rw-r--r--main/src/cgeo/geocaching/LogCacheActivity.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/LogCacheActivity.java b/main/src/cgeo/geocaching/LogCacheActivity.java
index d708210..118c47b 100644
--- a/main/src/cgeo/geocaching/LogCacheActivity.java
+++ b/main/src/cgeo/geocaching/LogCacheActivity.java
@@ -86,7 +86,6 @@ public class LogCacheActivity extends AbstractLoggingActivity implements DateDia
private String imageDescription;
private Uri imageUri;
private boolean sendButtonEnabled;
- private final boolean isRatingBarShown = false;
public void onLoadFinished() {
if (loggingManager.hasLoaderError()) {
@@ -286,7 +285,7 @@ public class LogCacheActivity extends AbstractLoggingActivity implements DateDia
}
private void initializeRatingBar() {
- if (GCVote.isVotingPossible(cache) && !isRatingBarShown) {
+ if (GCVote.isVotingPossible(cache)) {
GCVoteRatingBarUtil.initializeRatingBar(cache, getWindow().getDecorView().getRootView(), new OnRatingChangeListener() {
@Override