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

Commit 013edba6 authored by Jerome Gaillard's avatar Jerome Gaillard
Browse files

Update layoutlib following Change Ia12d448a

Test: layoutlib tests
Change-Id: I66632bcef3a05d3d89e7fc6a37f099100feed0ad
parent c068aa22
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ public class Hyphenator_Delegate {
    }

    /*package*/ @SuppressWarnings("UnusedParameters")  // TODO implement this.
    static long loadHyphenator(ByteBuffer buffer, int offset) {
    static long loadHyphenator(ByteBuffer buffer, int offset, int minPrefix, int minSuffix) {
        return sDelegateManager.addNewDelegate(new Hyphenator_Delegate());
    }
}
+3 −2
Original line number Diff line number Diff line
@@ -53,8 +53,9 @@ public class StaticLayout_Delegate {
    }

    @LayoutlibDelegate
    /*package*/ static long nLoadHyphenator(ByteBuffer buf, int offset) {
        return Hyphenator_Delegate.loadHyphenator(buf, offset);
    /*package*/ static long nLoadHyphenator(ByteBuffer buf, int offset, int minPrefix,
            int minSuffix) {
        return Hyphenator_Delegate.loadHyphenator(buf, offset, minPrefix, minSuffix);
    }

    @LayoutlibDelegate