diff --git a/docs/html/guide/developing/tools/aidl.jd b/docs/html/guide/developing/tools/aidl.jd index f370a804a4017..abfa8b17ad4f8 100644 --- a/docs/html/guide/developing/tools/aidl.jd +++ b/docs/html/guide/developing/tools/aidl.jd @@ -194,7 +194,6 @@ started.

  • Make your class implement the {@link android.os.Parcelable} interface.
  • Implement the method public void writeToParcel(Parcel out) that takes the current state of the object and writes it to a parcel.
  • -
  • Implement the method public void readFromParcel(Parcel in) that reads the value in a parcel into your object.
  • Add a static field called CREATOR to your class which is an object implementing the {@link android.os.Parcelable.Creator Parcelable.Creator} interface.