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

Commit 6c174f84 authored by Jeff Tinker's avatar Jeff Tinker
Browse files

Fix compilation warning on MediaDrm

getMaxSecurityLevel does not return an element of the
@SecurityLevel enumeration, it only returns SECURITY_LEVEL_MAX
which is unrelated. Remove the annotation.

bug:116746514
Change-Id: I1683c14b25f76df36c2287135af3940df6aff4a0
parent 33110132
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1202,7 +1202,6 @@ public final class MediaDrm implements AutoCloseable {
     * The maximum security level supported by the device. This is the default
     * security level when a session is opened.
     */
    @SecurityLevel
    public static final int getMaxSecurityLevel() {
        return SECURITY_LEVEL_MAX;
    }