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

Commit a62a022e authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android (Google) Code Review
Browse files

Merge "Remove unused local variable"

parents c25c7ccf cf6d3745
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -618,8 +618,6 @@ public class KeyboardBuilder<KP extends KeyboardParams> {

        final TypedArray a = mResources.obtainAttributes(Xml.asAttributeSet(parser),
                R.styleable.Keyboard_Case);
        final TypedArray viewAttr = mResources.obtainAttributes(Xml.asAttributeSet(parser),
                R.styleable.KeyboardView);
        try {
            final boolean modeMatched = matchTypedValue(a,
                    R.styleable.Keyboard_Case_mode, id.mMode, KeyboardId.modeName(id.mMode));
@@ -676,7 +674,6 @@ public class KeyboardBuilder<KP extends KeyboardParams> {
            return selected;
        } finally {
            a.recycle();
            viewAttr.recycle();
        }
    }