From 019bce8bf712949aba98cc37d9bc2a26ceb77f54 Mon Sep 17 00:00:00 2001 From: Tim Su Date: Thu, 22 Dec 2011 17:32:58 -0800 Subject: [PATCH] Removed debugging println statements --- .../com/todoroo/astrid/actfm/TagSettingsActivity.java | 4 +--- .../plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java | 2 -- .../com/todoroo/astrid/actfm/sync/ActFmInvoker.java | 1 - .../com/todoroo/astrid/actfm/sync/ActFmPreferenceService.java | 1 - .../com/todoroo/astrid/gtasks/sync/GtasksSyncProvider.java | 1 - .../astrid/producteev/sync/ProducteevSyncProvider.java | 1 - astrid/plugin-src/com/todoroo/astrid/timers/TimerPlugin.java | 1 - astrid/src/com/todoroo/astrid/ui/AstridTimePicker.java | 1 - 8 files changed, 1 insertion(+), 11 deletions(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/TagSettingsActivity.java b/astrid/plugin-src/com/todoroo/astrid/actfm/TagSettingsActivity.java index 351ba19f4..b626df0f4 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/TagSettingsActivity.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/TagSettingsActivity.java @@ -258,7 +258,6 @@ public class TagSettingsActivity extends Activity { } catch (JSONException e) { Log.e("tag-view-activity", "json error refresh owner", e); ownerLabel.setText(""); - System.err.println(tagData.getValue(TagData.USER)); } String peopleJson = tagData.getValue(TagData.MEMBERS); @@ -273,8 +272,7 @@ public class TagSettingsActivity extends Activity { JSONArray people = new JSONArray(peopleJson); tagMembers.fromJSONArray(people); } catch (JSONException e) { - System.err.println(peopleJson); - Log.e("tag-view-activity", "json error refresh members", e); + Log.e("tag-view-activity", "json error refresh members - " + peopleJson, e); } } diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java b/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java index 586c6bce5..19d5a88f4 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java @@ -386,7 +386,6 @@ public class TagViewActivity extends TaskListActivity { } image.setOnClickListener(listenerForImage(memberToUse, id, memberName)); } catch (JSONException e) { - System.err.println("Unable to create listener"); e.printStackTrace(); } membersView.addView(image); @@ -410,7 +409,6 @@ public class TagViewActivity extends TaskListActivity { assignedCriterion = Task.USER_ID.eq(id); Criterion assigned = Criterion.and(TaskCriteria.activeAndVisible(), assignedCriterion); filter = TagFilterExposer.filterFromTag(TagViewActivity.this, new Tag(tagData), assigned); - System.err.println("Filter: " + filter.sqlQuery); TextView filterByAssigned = (TextView) findViewById(R.id.filter_assigned); filterByAssigned.setVisibility(View.VISIBLE); filterByAssigned.setText(getString(R.string.actfm_TVA_filtered_by_assign, displayName)); diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java index 096348df8..e6814d1c8 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java @@ -211,7 +211,6 @@ public class ActFmInvoker { } sigBuilder.append(APP_SECRET); - System.err.println("SIG: " + sigBuilder); String signature = DigestUtils.md5Hex(sigBuilder.toString()); requestBuilder.append("sig").append('=').append(signature); return requestBuilder.toString(); diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmPreferenceService.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmPreferenceService.java index 3680a8c70..3be21794c 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmPreferenceService.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmPreferenceService.java @@ -111,7 +111,6 @@ public class ActFmPreferenceService extends SyncProviderUtilities { user.put("email", Preferences.getStringValue(PREF_EMAIL)); user.put("picture", Preferences.getStringValue(PREF_PICTURE)); user.put("id", Preferences.getLong(PREF_USER_ID, 0)); - System.err.println(user); } catch (JSONException e) { throw new RuntimeException(e); } diff --git a/astrid/plugin-src/com/todoroo/astrid/gtasks/sync/GtasksSyncProvider.java b/astrid/plugin-src/com/todoroo/astrid/gtasks/sync/GtasksSyncProvider.java index 109d18671..c7bd2b3fd 100644 --- a/astrid/plugin-src/com/todoroo/astrid/gtasks/sync/GtasksSyncProvider.java +++ b/astrid/plugin-src/com/todoroo/astrid/gtasks/sync/GtasksSyncProvider.java @@ -216,7 +216,6 @@ public class GtasksSyncProvider extends SyncProvider { } catch (IOException e) { handleException("gtasks-sync", e, true); } finally { - System.err.println("Sent " + localCreated.getCount() + " new tasks"); localCreated.close(); } } diff --git a/astrid/plugin-src/com/todoroo/astrid/producteev/sync/ProducteevSyncProvider.java b/astrid/plugin-src/com/todoroo/astrid/producteev/sync/ProducteevSyncProvider.java index 397790796..6560c70d8 100644 --- a/astrid/plugin-src/com/todoroo/astrid/producteev/sync/ProducteevSyncProvider.java +++ b/astrid/plugin-src/com/todoroo/astrid/producteev/sync/ProducteevSyncProvider.java @@ -264,7 +264,6 @@ public class ProducteevSyncProvider extends SyncProvider