diff options
author | Michael Keppler <michael.keppler@etas.com> | 2015-01-02 23:41:50 +0100 |
---|---|---|
committer | Michael Keppler <michael.keppler@etas.com> | 2015-01-02 23:42:39 +0100 |
commit | b71f47b925e15493c239a42fdaae4b681c893c30 (patch) | |
tree | ef246b2842b5da85769a731cd67eae65e7f7a784 /main/src | |
parent | 9a58eff9c778ff6ccead71f38c3bb530fc4a1f7f (diff) | |
download | cgeo-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.java | 3 |
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 |