File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
aztec/src/main/kotlin/org/wordpress/aztec/util Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import org.json.JSONException
55import org.json.JSONObject
66import org.wordpress.android.util.AppLog
77import org.wordpress.aztec.AztecText
8- import org.wordpress.aztec.spans.IAztecAttributedSpan
98
109class AztecLog {
1110 interface ExternalLogger {
@@ -21,7 +20,7 @@ class AztecLog {
2120 logContentJSON.put(" content" , aztecText.text.toString())
2221 logContentJSON.put(" length" , aztecText.text.length)
2322 val spansJSON = JSONArray ()
24- val spans = aztecText.text.getSpans(0 , aztecText.text.length, IAztecAttributedSpan ::class .java)
23+ val spans = aztecText.text.getSpans(0 , aztecText.text.length, Any ::class .java)
2524 spans.forEach {
2625 val currenSpanJSON = JSONObject ()
2726 currenSpanJSON.put(" clasz" , it.javaClass.name)
You can’t perform that action at this time.
0 commit comments