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

am: 2dbf6f50f3

Change-Id: I9add4992fbacca4668867abc7a218256805d1bfc
This commit is contained in:
Aaron Huang
2019-11-28 02:19:08 -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());