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

Commit 61805637 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 65 into donut

* changes:
  Remove references to android.util.Config
parents 2ee5b4d8 2faf6081
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -38,7 +38,6 @@ import android.text.TextUtils;
import android.text.TextUtils.SimpleStringSplitter;
import android.text.style.CharacterStyle;
import android.text.util.Regex;
import android.util.Config;
import android.util.Log;

import java.io.UnsupportedEncodingException;
@@ -61,6 +60,9 @@ import java.util.regex.Pattern;
 * @hide
 */
public final class Gmail {
    // Set to true to enable extra debugging.
    private static final boolean DEBUG = false;

    public static final String GMAIL_AUTH_SERVICE = "mail";
    // These constants come from google3/java/com/google/caribou/backend/MailLabel.java.
    public static final String LABEL_SENT = "^f";
@@ -1195,7 +1197,7 @@ public final class Gmail {

        @Override
        public void onChange(boolean selfChange) {
            if (Config.DEBUG) {
            if (DEBUG) {
                Log.d(TAG, "MailCursor is notifying " + mObservers.size() + " observers");
            }
            for (MailCursorObserver o: mObservers) {