From 597b7836055ac0448b82770d2579b82a7ab5805b Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Fri, 25 Jul 2014 12:48:26 +0200 Subject: No need to display the logs with smileys twice The log view now uses the background image loading process already used for caches and trackable descriptions. --- main/src/cgeo/geocaching/ui/HtmlImageCounter.java | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 main/src/cgeo/geocaching/ui/HtmlImageCounter.java (limited to 'main/src/cgeo/geocaching/ui/HtmlImageCounter.java') diff --git a/main/src/cgeo/geocaching/ui/HtmlImageCounter.java b/main/src/cgeo/geocaching/ui/HtmlImageCounter.java deleted file mode 100644 index 24b70ea..0000000 --- a/main/src/cgeo/geocaching/ui/HtmlImageCounter.java +++ /dev/null @@ -1,19 +0,0 @@ -package cgeo.geocaching.ui; - -import android.graphics.drawable.Drawable; -import android.text.Html; - -public class HtmlImageCounter implements Html.ImageGetter { - - private int imageCount = 0; - - @Override - public Drawable getDrawable(String url) { - imageCount++; - return null; - } - - public int getImageCount() { - return imageCount; - } -} \ No newline at end of file -- cgit v1.1