From 141e37da0422fc909d1be564cce152227a1fde32 Mon Sep 17 00:00:00 2001 From: thadh Date: Mon, 23 Jul 2012 17:20:52 -0700 Subject: [PATCH] Non-final html text. --- src/com/hughes/android/dictionary/engine/HtmlEntry.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/com/hughes/android/dictionary/engine/HtmlEntry.java b/src/com/hughes/android/dictionary/engine/HtmlEntry.java index 3278be6..af9651f 100644 --- a/src/com/hughes/android/dictionary/engine/HtmlEntry.java +++ b/src/com/hughes/android/dictionary/engine/HtmlEntry.java @@ -14,14 +14,13 @@ import com.ibm.icu.text.Transliterator; public class HtmlEntry extends AbstractEntry implements RAFSerializable, Comparable { final String title; - final String html; + public String html; - public HtmlEntry(final EntrySource entrySource, String title, String html) { + public HtmlEntry(final EntrySource entrySource, String title) { super(entrySource); this.title = title; - this.html = html; } public HtmlEntry(Dictionary dictionary, RandomAccessFile raf) throws IOException { @@ -68,7 +67,7 @@ public class HtmlEntry extends AbstractEntry implements RAFSerializable