Simplification

This commit is contained in:
M66B 2023-12-12 17:57:14 +01:00
parent fd6cb26068
commit f6682de845
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class NoStreamException extends SecurityException {
TextView tvUri = dview.findViewById(R.id.tvUri);
ImageButton ibInfo = dview.findViewById(R.id.ibInfo);
tvUri.setText(uri == null ? null : uri.getScheme());
tvUri.setText(uri == null ? null : uri.getLastPathSegment());
ibInfo.setOnClickListener(new View.OnClickListener() {
@Override