mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 15:05:44 +03:00
remove unneeded toString() call
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
7261f75549
commit
698ebdfd1c
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ public class MentionAutocompleteCallback implements AutocompleteCallback<Mention
|
|||
replacementStringBuilder.delete(emojiRange.range.getStart(), emojiRange.range.getEndInclusive());
|
||||
}
|
||||
|
||||
editable.replace(start, end, replacementStringBuilder.toString() + " ");
|
||||
editable.replace(start, end, replacementStringBuilder + " ");
|
||||
Spans.MentionChipSpan mentionChipSpan =
|
||||
new Spans.MentionChipSpan(DisplayUtils.getDrawableForMentionChipSpan(context,
|
||||
item.getId(),
|
||||
|
|
Loading…
Reference in a new issue