Merge "Add IpConfiguration parcelable interface implementation to system API"
This commit is contained in:
@@ -191,18 +191,12 @@ public final class IpConfiguration implements Parcelable {
|
|||||||
83 * httpProxy.hashCode();
|
83 * httpProxy.hashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** Implement the Parcelable interface */
|
||||||
* Implement the Parcelable interface
|
|
||||||
* @hide
|
|
||||||
*/
|
|
||||||
public int describeContents() {
|
public int describeContents() {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** Implement the Parcelable interface */
|
||||||
* Implement the Parcelable interface
|
|
||||||
* @hide
|
|
||||||
*/
|
|
||||||
public void writeToParcel(@NonNull Parcel dest, int flags) {
|
public void writeToParcel(@NonNull Parcel dest, int flags) {
|
||||||
dest.writeString(ipAssignment.name());
|
dest.writeString(ipAssignment.name());
|
||||||
dest.writeString(proxySettings.name());
|
dest.writeString(proxySettings.name());
|
||||||
|
|||||||
Reference in New Issue
Block a user