Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerardo committed Jan 19, 2024
1 parent 13c580a commit 4f79f24
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions aztec/src/main/kotlin/org/wordpress/aztec/spans/MarkSpan.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import android.text.TextPaint
import android.text.style.CharacterStyle
import org.wordpress.aztec.AztecAttributes


class MarkSpan : CharacterStyle, IAztecInlineSpan {
override var TAG = "mark"

Expand Down Expand Up @@ -35,6 +34,6 @@ class MarkSpan : CharacterStyle, IAztecInlineSpan {
}

fun getTextColor(): String {
return java.lang.String.format("#%06X", 0xFFFFFF and textColor!!);
return java.lang.String.format("#%06X", 0xFFFFFF and textColor!!)
}
}

0 comments on commit 4f79f24

Please sign in to comment.