1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-25 00:58:50 -05:00

Remove excessive debug logging

This commit is contained in:
cketti 2012-11-27 16:33:53 +01:00
parent f4fb907eca
commit 3b022cd72f

View File

@ -262,9 +262,6 @@ public class HtmlConverter {
if (isStartOfLine) {
// Not a quote character and not a space. Content is starting now.
isStartOfLine = false;
if (K9.DEBUG) {
Log.d(K9.LOG_TAG, "currentQuoteDepth: " + quoteDepth + " quotesThisLine: " + quotesThisLine);
}
// Add/remove blockquotes by comparing this line's quotes to the previous line's quotes.
if (quotesThisLine > quoteDepth) {
for (int i = quoteDepth; i < quotesThisLine; i++) {