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

Commit b99f8aa7 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

* commit 'f84d7bfb':
  Add missing references to VNativeObject
parents 9e719dde f84d7bfb
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);
    }