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

Commit d5962432 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix typo in MediaDrm.java"

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