Skip to content

Commit 811ca51

Browse files
committed
Analysis: Resolve variable is never used warning
Warning Message: "Parameter 'attrs' is never used"
1 parent 0e8e308 commit 811ca51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aztec/src/main/kotlin/org/wordpress/aztec/formatting/InlineFormatter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ class InlineFormatter(editor: AztecText, val codeStyle: CodeStyle, private val h
211211
joinStyleSpans(start, end)
212212
}
213213

214-
private fun applyMarkInlineStyle(start: Int = selectionStart, end: Int = selectionEnd, attrs: AztecAttributes = AztecAttributes()) {
214+
private fun applyMarkInlineStyle(start: Int = selectionStart, end: Int = selectionEnd) {
215215
val previousSpans = editableText.getSpans(start, end, MarkSpan::class.java)
216216
previousSpans.forEach {
217217
it.applyInlineStyleAttributes(editableText, start, end)

0 commit comments

Comments
 (0)