Add @SuppressLint("MissingSuperCall") as this is a false warning
This commit is contained in:
parent
565ea99f08
commit
a863974bda
1 changed files with 5 additions and 5 deletions
|
@ -25,9 +25,6 @@ import android.os.AsyncTask;
|
|||
import android.os.Bundle;
|
||||
import android.os.Handler;
|
||||
import android.os.Parcelable;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.annotation.StringRes;
|
||||
import androidx.appcompat.app.ActionBar;
|
||||
import android.text.TextUtils;
|
||||
import android.text.TextWatcher;
|
||||
import android.view.ContextThemeWrapper;
|
||||
|
@ -45,6 +42,9 @@ import android.widget.LinearLayout;
|
|||
import android.widget.TextView;
|
||||
import android.widget.Toast;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.annotation.StringRes;
|
||||
import androidx.appcompat.app.ActionBar;
|
||||
import com.bumptech.glide.Glide;
|
||||
import com.bumptech.glide.load.engine.DiskCacheStrategy;
|
||||
import com.fsck.k9.Account;
|
||||
|
@ -108,12 +108,11 @@ import com.fsck.k9.search.LocalSearch;
|
|||
import com.fsck.k9.ui.R;
|
||||
import com.fsck.k9.ui.base.K9Activity;
|
||||
import com.fsck.k9.ui.base.ThemeManager;
|
||||
import com.fsck.k9.ui.compose.WrapUriTextWatcher;
|
||||
import com.fsck.k9.ui.compose.QuotedMessageMvpView;
|
||||
import com.fsck.k9.ui.compose.QuotedMessagePresenter;
|
||||
import com.fsck.k9.ui.compose.WrapUriTextWatcher;
|
||||
import com.fsck.k9.ui.helper.SizeFormatter;
|
||||
import com.fsck.k9.ui.messagelist.DefaultFolderProvider;
|
||||
|
||||
import org.openintents.openpgp.OpenPgpApiManager;
|
||||
import org.openintents.openpgp.util.OpenPgpApi;
|
||||
import timber.log.Timber;
|
||||
|
@ -1055,6 +1054,7 @@ public class MessageCompose extends K9Activity implements OnClickListener,
|
|||
return true;
|
||||
}
|
||||
|
||||
@SuppressLint("MissingSuperCall")
|
||||
@Override
|
||||
public void onBackPressed() {
|
||||
prepareToFinish(false);
|
||||
|
|
Loading…
Reference in a new issue