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

Commit efb8e576 authored by Alan Viverette's avatar Alan Viverette
Browse files

Remove extra logging in DatePicker

Issue seems to be fixed now, don't need the extra logging.

Bug: 27310206
Change-Id: Ibf53d056e9c5144729dae02c72050aebd90e4343
parent 25118d1a
Loading
Loading
Loading
Loading
+0 −38
Original line number Original line Diff line number Diff line
@@ -36,7 +36,6 @@ import android.text.TextPaint;
import android.text.format.DateFormat;
import android.text.format.DateFormat;
import android.util.AttributeSet;
import android.util.AttributeSet;
import android.util.IntArray;
import android.util.IntArray;
import android.util.Log;
import android.util.MathUtils;
import android.util.MathUtils;
import android.util.StateSet;
import android.util.StateSet;
import android.view.KeyEvent;
import android.view.KeyEvent;
@@ -48,7 +47,6 @@ import android.view.accessibility.AccessibilityNodeInfo;
import android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction;
import android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction;


import java.text.NumberFormat;
import java.text.NumberFormat;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Calendar;
import java.util.Locale;
import java.util.Locale;


@@ -59,8 +57,6 @@ import libcore.icu.LocaleData;
 * within the specified month.
 * within the specified month.
 */
 */
class SimpleMonthView extends View {
class SimpleMonthView extends View {
    private static final String LOG_TAG = "SimpleMonthView";

    private static final int DAYS_IN_WEEK = 7;
    private static final int DAYS_IN_WEEK = 7;
    private static final int MAX_WEEKS_IN_MONTH = 6;
    private static final int MAX_WEEKS_IN_MONTH = 6;


@@ -71,9 +67,6 @@ class SimpleMonthView extends View {


    private static final int SELECTED_HIGHLIGHT_ALPHA = 0xB0;
    private static final int SELECTED_HIGHLIGHT_ALPHA = 0xB0;


    /** Temporary until we figure out why the date gets messed up. */
    private static final boolean DEBUG_WRONG_DATE = true;

    private final TextPaint mMonthPaint = new TextPaint();
    private final TextPaint mMonthPaint = new TextPaint();
    private final TextPaint mDayOfWeekPaint = new TextPaint();
    private final TextPaint mDayOfWeekPaint = new TextPaint();
    private final TextPaint mDayPaint = new TextPaint();
    private final TextPaint mDayPaint = new TextPaint();
@@ -195,22 +188,12 @@ class SimpleMonthView extends View {
    }
    }


    private void updateDayOfWeekLabels() {
    private void updateDayOfWeekLabels() {
        if (DEBUG_WRONG_DATE) {
            Log.d(LOG_TAG, "enter updateDayOfWeekLabels()", new Exception());
            Log.d(LOG_TAG, "mLocale => " + mLocale);
            Log.d(LOG_TAG, "mWeekStart => " + mWeekStart);
        }

        // Use tiny (e.g. single-character) weekday names from ICU. The indices
        // Use tiny (e.g. single-character) weekday names from ICU. The indices
        // for this list correspond to Calendar days, e.g. SUNDAY is index 1.
        // for this list correspond to Calendar days, e.g. SUNDAY is index 1.
        final String[] tinyWeekdayNames = LocaleData.get(mLocale).tinyWeekdayNames;
        final String[] tinyWeekdayNames = LocaleData.get(mLocale).tinyWeekdayNames;
        for (int i = 0; i < DAYS_IN_WEEK; i++) {
        for (int i = 0; i < DAYS_IN_WEEK; i++) {
            mDayOfWeekLabels[i] = tinyWeekdayNames[(mWeekStart + i - 1) % DAYS_IN_WEEK + 1];
            mDayOfWeekLabels[i] = tinyWeekdayNames[(mWeekStart + i - 1) % DAYS_IN_WEEK + 1];
        }
        }

        if (DEBUG_WRONG_DATE) {
            Log.d(LOG_TAG, "mDayOfWeekLabels <= " + Arrays.toString(mDayOfWeekLabels));
        }
    }
    }


    /**
    /**
@@ -773,20 +756,12 @@ class SimpleMonthView extends View {
     *                  {@link Calendar#SUNDAY} through {@link Calendar#SATURDAY}
     *                  {@link Calendar#SUNDAY} through {@link Calendar#SATURDAY}
     */
     */
    public void setFirstDayOfWeek(int weekStart) {
    public void setFirstDayOfWeek(int weekStart) {
        if (DEBUG_WRONG_DATE) {
            Log.d(LOG_TAG, "enter setFirstDayOfWeek(" + weekStart + ")", new Exception());
        }

        if (isValidDayOfWeek(weekStart)) {
        if (isValidDayOfWeek(weekStart)) {
            mWeekStart = weekStart;
            mWeekStart = weekStart;
        } else {
        } else {
            mWeekStart = mCalendar.getFirstDayOfWeek();
            mWeekStart = mCalendar.getFirstDayOfWeek();
        }
        }


        if (DEBUG_WRONG_DATE) {
            Log.d(LOG_TAG, "mWeekStart <=" + mWeekStart);
        }

        updateDayOfWeekLabels();
        updateDayOfWeekLabels();


        // Invalidate cached accessibility information.
        // Invalidate cached accessibility information.
@@ -812,11 +787,6 @@ class SimpleMonthView extends View {
     */
     */
    void setMonthParams(int selectedDay, int month, int year, int weekStart, int enabledDayStart,
    void setMonthParams(int selectedDay, int month, int year, int weekStart, int enabledDayStart,
            int enabledDayEnd) {
            int enabledDayEnd) {
        if (DEBUG_WRONG_DATE) {
            Log.d(LOG_TAG, "setMonthParams(" + selectedDay + ", " + month + ", " + year + ", "
                    + weekStart + ", " + enabledDayStart + ", " + enabledDayEnd + ")");
        }

        mActivatedDay = selectedDay;
        mActivatedDay = selectedDay;


        if (isValidMonth(month)) {
        if (isValidMonth(month)) {
@@ -855,14 +825,6 @@ class SimpleMonthView extends View {
        // Invalidate cached accessibility information.
        // Invalidate cached accessibility information.
        mTouchHelper.invalidateRoot();
        mTouchHelper.invalidateRoot();
        invalidate();
        invalidate();

        if (DEBUG_WRONG_DATE) {
            Log.d(LOG_TAG, "mMonth = " + mMonth);
            Log.d(LOG_TAG, "mDayOfWeekStart = " + mDayOfWeekStart);
            Log.d(LOG_TAG, "mWeekStart = " + mWeekStart);
            Log.d(LOG_TAG, "mDaysInMonth = " + mDaysInMonth);
            Log.d(LOG_TAG, "mToday = " + mToday);
        }
    }
    }


    private static int getDaysInMonth(int month, int year) {
    private static int getDaysInMonth(int month, int year) {