Simplification

This commit is contained in:
M66B
2023-12-12 12:33:01 +01:00
parent d445a265d8
commit 6e5c1086a8
3 changed files with 2 additions and 42 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 : UriHelper.toSafeString(uri)); // TODO CASA
tvUri.setText(uri == null ? null : uri.getScheme());
ibInfo.setOnClickListener(new View.OnClickListener() {
@Override