aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2014-08-07 19:53:21 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-08-07 18:54:22 +0000
commitfe12e8f0de6227b38365ae8681ad9df7419cc90e (patch)
treecc267412aabf6fc504c4fd3a7d0ff50b64aa8ba4
parentce06199a047f81d6afe522ab4e6f489deecb46f3 (diff)
parentbda807d3a1f39024fad99b0afc9eed834d4f9b81 (diff)
downloadbuild-fe12e8f0de6227b38365ae8681ad9df7419cc90e.tar.gz
Merge "Track bouncycastle upgrade to 1.51"
-rw-r--r--tools/signapk/SignApk.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/signapk/SignApk.java b/tools/signapk/SignApk.java
index e661e506f4..d0207362cf 100644
--- a/tools/signapk/SignApk.java
+++ b/tools/signapk/SignApk.java
@@ -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() {