suppressed lint warning in FeedRemover

This commit is contained in:
daniel oeh 2012-09-11 20:51:40 +02:00
parent 4a22f1be42
commit 7a8b18f3a4
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package de.danoeh.antennapod.asynctask;
import de.danoeh.antennapod.feed.Feed;
import de.danoeh.antennapod.feed.FeedManager;
import android.annotation.SuppressLint;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
@ -53,6 +54,7 @@ public class FeedRemover extends AsyncTask<Void, Void, Void> {
dialog.show();
}
@SuppressLint("NewApi")
public void executeAsync() {
if (android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.GINGERBREAD_MR1) {
executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);