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

Commit f5aafff4 authored by Chris Palmer's avatar Chris Palmer
Browse files

Unbreak the build.

Just a quick fix. Will properly re-add @deprecated and update-api next, and
then get API approval.

Change-Id: Idf57a33dc97bc2619cf48509f74d9e0de935124b
parent ba15633a
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -199,24 +199,18 @@ public abstract class PackageManager {
    /**
     * Signature check result: this is returned by {@link #checkSignatures}
     * if neither of the two packages is signed.
     *
     * @deprecated It is not possible to install unsigned packages.
     */
    public static final int SIGNATURE_NEITHER_SIGNED = 1;

    /**
     * Signature check result: this is returned by {@link #checkSignatures}
     * if the first package is not signed but the second is.
     *
     * @deprecated It is not possible to install unsigned packages.
     */
    public static final int SIGNATURE_FIRST_NOT_SIGNED = -1;

    /**
     * Signature check result: this is returned by {@link #checkSignatures}
     * if the second package is not signed but the first is.
     *
     * @deprecated It is not possible to install unsigned packages.
     */
    public static final int SIGNATURE_SECOND_NOT_SIGNED = -2;