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

Commit bda807d3 authored by Kenny Root's avatar Kenny Root
Browse files

Track bouncycastle upgrade to 1.51

The new API in 1.51 will allow null return values.

Change-Id: I583690bf0740b2d0962f02edea3896e18626e548
parent ce06199a
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -621,8 +621,12 @@ class SignApk {
            this.type = new ASN1ObjectIdentifier(CMSObjectIdentifiers.data.getId());
        }

        /**
         * This should actually return byte[] or something similar, but nothing
         * actually checks it currently.
         */
        public Object getContent() {
            throw new UnsupportedOperationException();
            return this;
        }

        public ASN1ObjectIdentifier getContentType() {