Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit af37b988 authored by Chet Haase's avatar Chet Haase
Browse files

Remove PathIterator.Segment() constructor from public API

Bug: 255429700
Test: CTS PathTest and PathIteratorTest pass

Change-Id: Ia269a7cbf6f4a6827752f8034566e04d19076d4a
parent b769860c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -15438,7 +15438,6 @@ package android.graphics {
  }
  public static class PathIterator.Segment {
    ctor public PathIterator.Segment(@NonNull int, @NonNull float[], float);
    method public float getConicWeight();
    method @NonNull public float[] getPoints();
    method @NonNull public int getVerb();
+1 −1
Original line number Diff line number Diff line
@@ -281,7 +281,7 @@ public class PathIterator implements Iterator<PathIterator.Segment> {
            return mConicWeight;
        }

        public Segment(@NonNull @Verb int verb, @NonNull float[] points, float conicWeight) {
        Segment(@NonNull @Verb int verb, @NonNull float[] points, float conicWeight) {
            mVerb = verb;
            mPoints = points;
            mConicWeight = conicWeight;