Skip to content

Commit

Permalink
Fixed lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
khaykov committed Nov 27, 2024
1 parent 7a365a5 commit 1e415bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aztec/src/main/kotlin/org/wordpress/aztec/AztecText.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,7 @@ open class AztecText : AppCompatEditText, TextWatcher, UnknownHtmlSpan.OnUnknown
}

if (length() != 0) {
if((length() == 1 && text[0] == Constants.END_OF_BUFFER_MARKER)){
if ((length() == 1 && text[0] == Constants.END_OF_BUFFER_MARKER)) {
return
}

Expand Down

0 comments on commit 1e415bd

Please sign in to comment.