Merge "Add IpConfiguration parcelable interface implementation to system API" am: 2193b07c21

am: fda119df8e

Change-Id: Ic5b8e360cb33cdd18f32a4d2c17beb996584ebda
This commit is contained in:
Aaron Huang
2019-11-28 02:14:56 -08:00
committed by android-build-merger

View File

@@ -191,18 +191,12 @@ public final class IpConfiguration implements Parcelable {
83 * httpProxy.hashCode();
}
/**
* Implement the Parcelable interface
* @hide
*/
/** Implement the Parcelable interface */
public int describeContents() {
return 0;
}
/**
* Implement the Parcelable interface
* @hide
*/
/** Implement the Parcelable interface */
public void writeToParcel(@NonNull Parcel dest, int flags) {
dest.writeString(ipAssignment.name());
dest.writeString(proxySettings.name());