Skip to content

Commit b4baff8

Browse files
committed
remove crashlytics reference from Utils
1 parent 32e98a9 commit b4baff8

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

WordPressUtils/src/main/java/org/wordpress/android/util/HtmlUtils.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
import android.text.style.QuoteSpan;
1111

1212
import org.apache.commons.lang.StringEscapeUtils;
13-
import org.wordpress.android.util.AppLog.T;
14-
import org.wordpress.android.util.CrashlyticsUtils.ExceptionType;
15-
import org.wordpress.android.util.CrashlyticsUtils.ExtraKey;
1613

1714
public class HtmlUtils {
1815
/*
@@ -120,9 +117,6 @@ public static SpannableStringBuilder fromHtml(String source, WPImageGetter wpIma
120117
} catch (RuntimeException runtimeException) {
121118
// In case our tag handler fails
122119
html = (SpannableStringBuilder) Html.fromHtml(source, wpImageGetter, null);
123-
// Log the exception and text that produces the error
124-
CrashlyticsUtils.setString(ExtraKey.NOTE_HTMLDATA, source);
125-
CrashlyticsUtils.logException(runtimeException, ExceptionType.SPECIFIC, T.NOTIFS);
126120
}
127121
Emoticons.replaceEmoticonsWithEmoji(html);
128122
QuoteSpan spans[] = html.getSpans(0, html.length(), QuoteSpan.class);

0 commit comments

Comments
 (0)