aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/ui
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2014-01-04 13:14:36 +0100
committerBananeweizen <bananeweizen@gmx.de>2014-01-04 13:14:36 +0100
commitfb0246ad4db07ad6738e147fec327e4dd11bc69f (patch)
tree9ac3cd6daa26deb44f132b086d96eb24ead0a502 /main/src/cgeo/geocaching/ui
parent01de707ee0f6f47cfcb576f0e82e0c65ed8e418a (diff)
downloadcgeo-fb0246ad4db07ad6738e147fec327e4dd11bc69f.zip
cgeo-fb0246ad4db07ad6738e147fec327e4dd11bc69f.tar.gz
cgeo-fb0246ad4db07ad6738e147fec327e4dd11bc69f.tar.bz2
refactoring: clean some warnings
Diffstat (limited to 'main/src/cgeo/geocaching/ui')
-rw-r--r--main/src/cgeo/geocaching/ui/logs/LogsViewCreator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/ui/logs/LogsViewCreator.java b/main/src/cgeo/geocaching/ui/logs/LogsViewCreator.java
index fb72ee5..6590d22 100644
--- a/main/src/cgeo/geocaching/ui/logs/LogsViewCreator.java
+++ b/main/src/cgeo/geocaching/ui/logs/LogsViewCreator.java
@@ -84,7 +84,7 @@ public abstract class LogsViewCreator extends AbstractCachingListViewPageViewCre
fillCountOrLocation(holder, log);
- // logtext, avoid parsing HTML if not necessary
+ // log text, avoid parsing HTML if not necessary
String logText = log.log;
if (TextUtils.containsHtml(logText)) {
logText = log.getDisplayText();
@@ -146,7 +146,7 @@ public abstract class LogsViewCreator extends AbstractCachingListViewPageViewCre
abstract protected boolean isValid();
- /** Loads the Log Images outside the ui thread. */
+ /** Loads the Log Images outside the UI thread. */
private class LogImageLoader extends AsyncTask<String, Progress, Spanned> {
final private LogViewHolder holder;