(Parcel in)
| 36 | private String type; |
| 37 | |
| 38 | protected UriType(Parcel in) { |
| 39 | this.uri = in.readParcelable(Uri.class.getClassLoader()); |
| 40 | this.type = in.readString(); |
| 41 | } |
| 42 | |
| 43 | public UriType(Uri uri, String type, ClipDescription description, Context context) { |
| 44 | this.uri = uri; |
nothing calls this directly
no test coverage detected