(Parcel parcel)
| 837 | } |
| 838 | |
| 839 | static Uri readFrom(Parcel parcel) { |
| 840 | return new OpaqueUri( |
| 841 | parcel.readString(), |
| 842 | Part.readFrom(parcel), |
| 843 | Part.readFrom(parcel) |
| 844 | ); |
| 845 | } |
| 846 | |
| 847 | public int describeContents() { |
| 848 | return 0; |
no test coverage detected