Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
removed debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
y20k committed Nov 25, 2015
1 parent bbe1078 commit 35651b2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ public void onReceive(Context context, Intent intent) {
BroadcastReceiver collectionChangedReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
System.out.println("!!! Dong (Main Activity)");
refreshStationList(mContext);
}
};
Expand Down Expand Up @@ -366,7 +365,6 @@ private void handleNewStationIntent() {
stationDownloader.execute();

// send local broadcast
System.out.println("!!! Ding (Main Activity / handle intent)");
Intent i = new Intent();
i.setAction(ACTION_COLLECTION_CHANGED);
LocalBroadcastManager.getInstance(mContext).sendBroadcast(i);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ public void onClick(DialogInterface arg0, int arg1) {
Toast.makeText(mContext, R.string.toastalert_delete_successful, Toast.LENGTH_LONG).show();

// send local broadcast
System.out.println("!!! Ding (DIALOG DELETE)");
Intent i = new Intent();
i.setAction(ACTION_COLLECTION_CHANGED);
LocalBroadcastManager.getInstance(mContext).sendBroadcast(i);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public StationDownloader(String stationURLString, Context context) {
// notify user
String toastMessage = mContext.getString(R.string.toastmessage_add_download_started);
Toast.makeText(mContext, toastMessage + mStationURLString, Toast.LENGTH_LONG).show();
System.out.println("!!! Downloading (Station Downloader): " + mStationURL);
} else {
// something is wrong with external storage or url
mErrors = true;
Expand Down Expand Up @@ -116,7 +115,6 @@ protected void onPostExecute(Station station) {
// add station to collection
mCollection.add(station);
// send local broadcast
System.out.println("!!! Ding (Station Downloader)");
Intent i = new Intent();
i.setAction(ACTION_COLLECTION_CHANGED);
LocalBroadcastManager.getInstance(mContext).sendBroadcast(i);
Expand Down

0 comments on commit 35651b2

Please sign in to comment.