Reformatted the line of code to make it easier to see.

This commit is contained in:
PhotonQyv 2017-09-05 20:38:45 +01:00
parent 241407887a
commit 3956ef680d
1 changed files with 2 additions and 1 deletions

View File

@ -358,7 +358,8 @@ public class StatusListAdapter extends BaseAdapter implements OnPostActionInterf
String value = matcher.group(0);
int end = matcher.end();
if (spannableString.charAt(end) == '/') {
text = spannableString.toString().substring(0, end).concat(spannableString.toString().substring(end+1, spannableString.length()));
text = spannableString.toString().substring(0, end).
concat(spannableString.toString().substring(end+1, spannableString.length()));
}
if( value != null) {
urlConversion.put(key, value);