mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2024-11-22 11:02:35 +01:00
Simplify code
This commit is contained in:
parent
8f4c6fb6ac
commit
ea1b910d7e
@ -590,13 +590,10 @@ public class SearchFragment extends BaseListFragment<SearchInfo, ListExtractor.I
|
||||
@Override
|
||||
public void afterTextChanged(final Editable s) {
|
||||
// Remove rich text formatting
|
||||
final CharacterStyle[] toBeRemovedSpans = s.getSpans(
|
||||
0, s.length(), CharacterStyle.class
|
||||
);
|
||||
for (final CharacterStyle toBeRemovedSpan : toBeRemovedSpans) {
|
||||
s.removeSpan(toBeRemovedSpan);
|
||||
for (final CharacterStyle span : s.getSpans(0, s.length(), CharacterStyle.class)) {
|
||||
s.removeSpan(span);
|
||||
}
|
||||
|
||||
|
||||
final String newText = searchEditText.getText().toString();
|
||||
suggestionPublisher.onNext(newText);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user