Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit 1ab6b28

Browse files
kenodoggyniftynei
authored andcommitted
Remove static import per comments
1 parent 3898a33 commit 1ab6b28

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/src/main/java/com/zulip/android/models/Message.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737
import java.util.Map;
3838
import java.util.concurrent.Callable;
3939

40-
import static com.zulip.android.util.CustomHtmlToSpannedConverter.linkifySpanned;
41-
4240
@DatabaseTable(tableName = "messages")
4341
public class Message {
4442

@@ -535,7 +533,7 @@ public Drawable getDrawable(String source) {
535533
CustomHtmlToSpannedConverter converter = new CustomHtmlToSpannedConverter(
536534
source, null, null, parser, emojiGetter, app.getServerURI());
537535

538-
return linkifySpanned(converter.convert(), Linkify.ALL);
536+
return CustomHtmlToSpannedConverter.linkifySpanned(converter.convert(), Linkify.ALL);
539537
}
540538

541539
}

0 commit comments

Comments
 (0)