Merge pull request #1768 from Gustl22/quote

refactor 'QouteHandler' to 'QuoteHandler'
This commit is contained in:
yakov116 2018-04-27 09:31:25 -04:00 committed by GitHub
commit 0604c24625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ import com.fastaccess.provider.timeline.handler.LinkHandler;
import com.fastaccess.provider.timeline.handler.ListsHandler;
import com.fastaccess.provider.timeline.handler.MarginHandler;
import com.fastaccess.provider.timeline.handler.PreTagHandler;
import com.fastaccess.provider.timeline.handler.QouteHandler;
import com.fastaccess.provider.timeline.handler.QuoteHandler;
import com.fastaccess.provider.timeline.handler.StrikethroughHandler;
import com.fastaccess.provider.timeline.handler.SubScriptHandler;
import com.fastaccess.provider.timeline.handler.SuperScriptHandler;
@ -89,7 +89,7 @@ public class HtmlHelper {
mySpanner.registerHandler("code", new PreTagHandler(windowBackground, false, theme));
mySpanner.registerHandler("img", new DrawableHandler(textView, width));
mySpanner.registerHandler("g-emoji", new EmojiHandler());
mySpanner.registerHandler("blockquote", new QouteHandler(windowBackground));
mySpanner.registerHandler("blockquote", new QuoteHandler(windowBackground));
mySpanner.registerHandler("b", new BoldHandler());
mySpanner.registerHandler("strong", new BoldHandler());
mySpanner.registerHandler("i", new ItalicHandler());

View File

@ -15,7 +15,7 @@ import lombok.AllArgsConstructor;
* Created by Kosh on 23 Apr 2017, 11:30 AM
*/
@AllArgsConstructor public class QouteHandler extends TagNodeHandler {
@AllArgsConstructor public class QuoteHandler extends TagNodeHandler {
@ColorInt private int color;