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

Commit 17716ac9 authored by Jeff Tinker's avatar Jeff Tinker
Browse files

Fix typo in MediaDrm.java

bug:78248792
Change-Id: I584762c2b2febb4abf05361062bdd3d7d78f49e7
parent 7695d730
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1523,7 +1523,7 @@ public final class MediaDrm implements AutoCloseable {
                // this should never happen as mWrappedKey is initialized in
                // JNI after construction of the KeyRequest object. The check
                // is needed here to guarantee @NonNull annotation.
                throw new RuntimeException("Cerfificate is not initialized");
                throw new RuntimeException("Certificate is not initialized");
            }
            return mWrappedKey;
        }
@@ -1537,7 +1537,7 @@ public final class MediaDrm implements AutoCloseable {
                // this should never happen as mCertificateData is initialized in
                // JNI after construction of the KeyRequest object. The check
                // is needed here to guarantee @NonNull annotation.
                throw new RuntimeException("Cerfificate is not initialized");
                throw new RuntimeException("Certificate is not initialized");
            }
            return mCertificateData;
        }