From 4f79f246daa17f0be0eed60a890033c73da41f7f Mon Sep 17 00:00:00 2001 From: Gerardo Date: Fri, 19 Jan 2024 14:49:37 +0100 Subject: [PATCH] Fix lint issues --- aztec/src/main/kotlin/org/wordpress/aztec/spans/MarkSpan.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aztec/src/main/kotlin/org/wordpress/aztec/spans/MarkSpan.kt b/aztec/src/main/kotlin/org/wordpress/aztec/spans/MarkSpan.kt index 11f963bc5..1b127c8cc 100644 --- a/aztec/src/main/kotlin/org/wordpress/aztec/spans/MarkSpan.kt +++ b/aztec/src/main/kotlin/org/wordpress/aztec/spans/MarkSpan.kt @@ -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" @@ -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!!) } }