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

Commit a65fe884 authored by Fabrice Di Meglio's avatar Fabrice Di Meglio
Browse files

Fix the build

Change-Id: Ia021742fb33671f9ece48180789757297fa60001
parent d88e3054
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -149,7 +149,6 @@ public class NumberPicker extends LinearLayout {
     * strings like "01". Keeping a static formatter etc. is the most efficient
     * way to do this; it avoids creating temporary objects on every call to
     * format().
     *
     */
    private static class TwoDigitFormatter implements NumberPicker.Formatter {
        final StringBuilder mBuilder = new StringBuilder();
@@ -191,11 +190,13 @@ public class NumberPicker extends LinearLayout {

    private static final TwoDigitFormatter sTwoDigitFormatter = new TwoDigitFormatter();

    static final Formatter getTwoDigitFormatter() {
    /**
     * @hide
     */
    public static final Formatter getTwoDigitFormatter() {
        return sTwoDigitFormatter;
    }


    /**
     * The increment button.
     */