Merge "Add IpConfiguration parcelable interface implementation to system API"

am: 2193b07c21

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