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

Commit 3f63f58c authored by Diego Perez's avatar Diego Perez Committed by android-build-merger
Browse files

Merge "Add missing references to VNativeObject" into nyc-dev am: f84d7bfb

am: b99f8aa7

* commit 'b99f8aa7':
  Add missing references to VNativeObject
parents e9370e50 b99f8aa7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -204,14 +204,14 @@ public class VectorDrawable_Delegate {

    @LayoutlibDelegate
    static void nUpdateFullPathFillGradient(long pathPtr, long fillGradientPtr) {
        VFullPath_Delegate path = getDelegate(pathPtr);
        VFullPath_Delegate path = VNativeObject.getDelegate(pathPtr);

        path.setFillGradient(fillGradientPtr);
    }

    @LayoutlibDelegate
    static void nUpdateFullPathStrokeGradient(long pathPtr, long strokeGradientPtr) {
        VFullPath_Delegate path = getDelegate(pathPtr);
        VFullPath_Delegate path = VNativeObject.getDelegate(pathPtr);

        path.setStrokeGradient(strokeGradientPtr);
    }