Merge "Remove STOPSHIPs in Email/Emailcommon"

This commit is contained in:
Marc Blank 2011-08-10 16:50:48 -07:00 committed by Android (Google) Code Review
commit b9e8c2def1
5 changed files with 3 additions and 15 deletions

View File

@ -17,12 +17,12 @@
package com.android.emailcommon; package com.android.emailcommon;
import com.android.emailcommon.utility.Utility;
import android.content.Context; import android.content.Context;
import android.telephony.TelephonyManager; import android.telephony.TelephonyManager;
import android.util.Log; import android.util.Log;
import com.android.emailcommon.utility.Utility;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.BufferedWriter; import java.io.BufferedWriter;
import java.io.File; import java.io.File;
@ -64,10 +64,6 @@ public class Device {
if (!f.delete()) { if (!f.delete()) {
Log.e(Logging.LOG_TAG, "Can't delete null deviceName file; try overwrite."); Log.e(Logging.LOG_TAG, "Can't delete null deviceName file; try overwrite.");
} }
} else {
// STOPSHIP Remove logging
Log.w(Logging.LOG_TAG, "deviceId read as: " + id);
return id;
} }
} else { } else {
Log.w(Logging.LOG_TAG, f.getAbsolutePath() + ": File exists, but can't read?" + Log.w(Logging.LOG_TAG, f.getAbsolutePath() + ": File exists, but can't read?" +

View File

@ -40,7 +40,6 @@ import java.util.ArrayList;
* a limit on the sync window for the Account) * a limit on the sync window for the Account)
*/ */
public final class Policy extends EmailContent implements EmailContent.PolicyColumns, Parcelable { public final class Policy extends EmailContent implements EmailContent.PolicyColumns, Parcelable {
// STOPSHIP Change to false after a few days of debugging
public static final boolean DEBUG_POLICY = false; // DO NOT SUBMIT WITH THIS SET TO TRUE public static final boolean DEBUG_POLICY = false; // DO NOT SUBMIT WITH THIS SET TO TRUE
public static final String TAG = "Email/Policy"; public static final String TAG = "Email/Policy";

View File

@ -383,8 +383,7 @@ abstract class UIControllerBase implements MailboxListFragment.Callback,
return; return;
} }
if (!mRemovedFragments.contains(fragment)) { if (!mRemovedFragments.contains(fragment)) {
// STOPSHIP Remove log/catch. b/4905749 - b/4981556 // Remove try/catch when b/4981556 is fixed (framework bug)
Log.d(Logging.LOG_TAG, "Removing " + fragment);
try { try {
ft.remove(fragment); ft.remove(fragment);
} catch (IllegalStateException ex) { } catch (IllegalStateException ex) {

View File

@ -68,9 +68,7 @@ public class AccountSetupOptions extends AccountSetupActivity implements OnClick
public static final int REQUEST_CODE_ACCEPT_POLICIES = 1; public static final int REQUEST_CODE_ACCEPT_POLICIES = 1;
/** Default sync window for new EAS accounts */ /** Default sync window for new EAS accounts */
// STOPSHIP Change default for now to auto
private static final int SYNC_WINDOW_EAS_DEFAULT = SyncWindow.SYNC_WINDOW_AUTO; private static final int SYNC_WINDOW_EAS_DEFAULT = SyncWindow.SYNC_WINDOW_AUTO;
// Was SYNC_WINDOW_3_DAYS;
public static void actionOptions(Activity fromActivity) { public static void actionOptions(Activity fromActivity) {
fromActivity.startActivity(new Intent(fromActivity, AccountSetupOptions.class)); fromActivity.startActivity(new Intent(fromActivity, AccountSetupOptions.class));

View File

@ -919,7 +919,6 @@ public class AttachmentDownloadService extends Service implements Runnable {
} }
if (intent != null && intent.hasExtra(EXTRA_ATTACHMENT)) { if (intent != null && intent.hasExtra(EXTRA_ATTACHMENT)) {
Attachment att = (Attachment)intent.getParcelableExtra(EXTRA_ATTACHMENT); Attachment att = (Attachment)intent.getParcelableExtra(EXTRA_ATTACHMENT);
Log.d(TAG, "*** ONSTARTCOMMAND, changed: " + att.mId);
onChange(att); onChange(att);
} }
return Service.START_STICKY; return Service.START_STICKY;
@ -927,7 +926,6 @@ public class AttachmentDownloadService extends Service implements Runnable {
@Override @Override
public void onCreate() { public void onCreate() {
Log.d(TAG, "**** ON CREATE!");
// Start up our service thread // Start up our service thread
new Thread(this, "AttachmentDownloadService").start(); new Thread(this, "AttachmentDownloadService").start();
} }
@ -938,8 +936,6 @@ public class AttachmentDownloadService extends Service implements Runnable {
@Override @Override
public void onDestroy() { public void onDestroy() {
// STOPSHIP Remove this, and other, lifecycle logging
Log.d(TAG, "**** ON DESTROY!");
// Mark this instance of the service as stopped // Mark this instance of the service as stopped
mStop = true; mStop = true;
if (sRunningService != null) { if (sRunningService != null) {