Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0765d448 authored by Jeff Brown's avatar Jeff Brown Committed by Android (Google) Code Review
Browse files

Merge "Shouldn't catch Throwable in AsyncTask."

parents 209266e9 b1ec5ef4
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -281,9 +281,6 @@ public abstract class AsyncTask<Params, Progress, Result> {
                            e.getCause());
                } catch (CancellationException e) {
                    postResultIfNotInvoked(null);
                } catch (Throwable t) {
                    throw new RuntimeException("An error occured while executing "
                            + "doInBackground()", t);
                }
            }
        };