Refactoring

This commit is contained in:
M66B 2020-11-17 21:55:37 +01:00
parent bd9b1d5f93
commit 0ff75b6030
1 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ public class StyleHelper {
case R.id.group_style_blockquote:
return setBlockQuote(item);
case R.id.group_style_strikethrough:
return setStrikethrough(item);
return setStrikeThrough(item);
case R.id.group_style_clear:
return clear(item);
default:
@ -336,7 +336,7 @@ public class StyleHelper {
return true;
}
private boolean setStrikethrough(MenuItem item) {
private boolean setStrikeThrough(MenuItem item) {
boolean has = false;
for (StrikethroughSpan span : t.getSpans(s, e, StrikethroughSpan.class)) {
has = true;