diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-06-15 17:20:50 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-06-15 17:20:50 +0200 |
| commit | 3bb09ef0006c9a5bab27852cff848af72d0a2b16 (patch) | |
| tree | 5524a85fe32d68988d42243632e3dd8e4288cad0 /main/src/cgeo/geocaching/TrackableActivity.java | |
| parent | 3d41a7c9b48fea09d6cc74cd96fa1a13b777eeb2 (diff) | |
| download | cgeo-3bb09ef0006c9a5bab27852cff848af72d0a2b16.zip cgeo-3bb09ef0006c9a5bab27852cff848af72d0a2b16.tar.gz cgeo-3bb09ef0006c9a5bab27852cff848af72d0a2b16.tar.bz2 | |
refactoring: minor cleanup in utils classes
Diffstat (limited to 'main/src/cgeo/geocaching/TrackableActivity.java')
| -rw-r--r-- | main/src/cgeo/geocaching/TrackableActivity.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/TrackableActivity.java b/main/src/cgeo/geocaching/TrackableActivity.java index 9822946..5742862 100644 --- a/main/src/cgeo/geocaching/TrackableActivity.java +++ b/main/src/cgeo/geocaching/TrackableActivity.java @@ -14,7 +14,7 @@ import cgeo.geocaching.ui.AbstractCachingPageViewCreator; import cgeo.geocaching.ui.AnchorAwareLinkMovementMethod; import cgeo.geocaching.ui.CacheDetailsCreator; import cgeo.geocaching.ui.Formatter; -import cgeo.geocaching.utils.BaseUtils; +import cgeo.geocaching.utils.TextUtils; import cgeo.geocaching.utils.HtmlUtils; import cgeo.geocaching.utils.Log; import cgeo.geocaching.utils.UnknownTagsHandler; @@ -440,7 +440,7 @@ public class TrackableActivity extends AbstractViewPagerActivity<TrackableActivi logView.setMovementMethod(AnchorAwareLinkMovementMethod.getInstance()); String logText = log.log; - if (BaseUtils.containsHtml(logText)) { + if (TextUtils.containsHtml(logText)) { logText = log.getDisplayText(); logView.setText(Html.fromHtml(logText, new HtmlImage(null, false, StoredList.TEMPORARY_LIST_ID, false), null), TextView.BufferType.SPANNABLE); } |
