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

Commit 47ef6a4e authored by Chet Haase's avatar Chet Haase Committed by Android (Google) Code Review
Browse files

Merge "Remove PathIterator.Segment() constructor from public API"

parents 8e0b6abf af37b988
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -15481,7 +15481,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;