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

Commit cad54e62 authored by Søren Gjesse's avatar Søren Gjesse Committed by Android (Google) Code Review
Browse files

Merge "Make an always overridden method abstract"

parents aecfeb44 09bd5bc4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -172,8 +172,7 @@ abstract public class Job implements Runnable {
        return true;
    }

    void finish() {
    }
    abstract void finish();

    abstract void start();
    abstract Notification getSetupNotification();
+0 −2
Original line number Diff line number Diff line
@@ -108,8 +108,6 @@ public class TestJob extends Job {
                R.drawable.ic_cab_cancel);
    }

    // Add an empty finish method. R8 will remove the one in the base class as that
    // is never called in the app.
    @Override
    void finish() {
    }