Skip to content

Commit

Permalink
Remove static import per comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodoggy authored and niftynei committed Sep 10, 2016
1 parent 3898a33 commit 1ab6b28
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/src/main/java/com/zulip/android/models/Message.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
import java.util.Map;
import java.util.concurrent.Callable;

import static com.zulip.android.util.CustomHtmlToSpannedConverter.linkifySpanned;

@DatabaseTable(tableName = "messages")
public class Message {

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

return linkifySpanned(converter.convert(), Linkify.ALL);
return CustomHtmlToSpannedConverter.linkifySpanned(converter.convert(), Linkify.ALL);
}

}

0 comments on commit 1ab6b28

Please sign in to comment.