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

Commit a540344b authored by Diego Perez's avatar Diego Perez Committed by Android (Google) Code Review
Browse files

Merge "Avoid calling deepCopyNodes on null array"

parents 49f18724 db8601fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -981,7 +981,7 @@ public class VectorDrawable_Delegate {
        public VPath_Delegate(VPath_Delegate copy) {
            mPathName = copy.mPathName;
            mChangingConfigurations = copy.mChangingConfigurations;
            mNodes = PathParser_Delegate.deepCopyNodes(copy.mNodes);
            mNodes = copy.mNodes != null ? PathParser_Delegate.deepCopyNodes(copy.mNodes) : null;
        }

        public void toPath(Path path) {