From 8a4a97f46ac02d7475a4a9532cb3b80800dcda90 Mon Sep 17 00:00:00 2001 From: Bananeweizen Date: Sat, 28 Dec 2013 10:18:24 +0100 Subject: #3449: debug change This change needs to be reverted after it has been tested by the affected users, as it disables the fix for #2057. --- main/res/layout/cachedetail_description_page.xml | 4 ++-- main/src/cgeo/geocaching/CacheDetailActivity.java | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) (limited to 'main') diff --git a/main/res/layout/cachedetail_description_page.xml b/main/res/layout/cachedetail_description_page.xml index dba6789..8325798 100644 --- a/main/res/layout/cachedetail_description_page.xml +++ b/main/res/layout/cachedetail_description_page.xml @@ -11,7 +11,7 @@ - - { private final View loadingIndicatorView; - private final IndexOutOfBoundsAvoidingTextView descriptionView; + private final TextView descriptionView; private final String descriptionString; private Spanned description; private final View shortDescView; public LoadDescriptionTask(final String description, final View descriptionView, final View loadingIndicatorView, final View shortDescView) { - assert descriptionView instanceof IndexOutOfBoundsAvoidingTextView; this.descriptionString = description; - this.descriptionView = (IndexOutOfBoundsAvoidingTextView) descriptionView; + this.descriptionView = (TextView) descriptionView; this.loadingIndicatorView = loadingIndicatorView; this.shortDescView = shortDescView; } -- cgit v1.1