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

Commit cb09bc45 authored by Deepanshu Gupta's avatar Deepanshu Gupta
Browse files

Fix typos in previous bugfixes.

The commits 2c9fbdd2 and 12b6d29b introduced minor bugs. This change fixes
them.
parent c79173c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ public class TimePickerSpinnerDelegate_Delegate {
    private static final int PM = 1;

    @LayoutlibDelegate
    static int getAmOrPmKeyCode(int amOrPm) {
    static int getAmOrPmKeyCode(TimePickerSpinnerDelegate tpsd, int amOrPm) {
        // We don't care about locales here.
        if (amOrPm == AM) {
            return KeyEvent.KEYCODE_A;
+1 −1
Original line number Diff line number Diff line
@@ -482,7 +482,7 @@ public final class BridgeContext extends Context {
            // In some cases, style may not be a dynamic id, so we do a full search.
            ResourceReference ref = resolveId(resid);
            if (ref != null) {
                mRenderResources.getStyle(ref.getName(), ref.isFramework());
                style = mRenderResources.getStyle(ref.getName(), ref.isFramework());
            }
        }