diff options
author | Tobias Thierer <tobiast@google.com> | 2017-11-01 14:25:58 +0000 |
---|---|---|
committer | Tobias Thierer <tobiast@google.com> | 2017-11-08 17:13:35 +0000 |
commit | 68c47053bd3c7dd7e547a060e243394ebde7cb1b (patch) | |
tree | 6357fa9e6dc18230038da0867e323e8795cff63e /luni/src/module/java/module-info.java | |
parent | 1d26864a6bcd6b810f4fbde934dd19664d357514 (diff) |
module-info: add missing package org.json
This is another package that was forgotten from
module-info.java, on top of the ones addressed in
http://r.android.com/523335
This CL adds it.
No effort was made to confirm whether any additional
packages were forgotten; I'm adding them as they show
up as compile-time problems. In the long run, this
file should be generated at compile time.
Test: Treehugger
Bug: 38177569
Change-Id: Ifa642478e89621d7ae83f8bf96f044940a0f9ad7
Diffstat (limited to 'luni/src/module/java/module-info.java')
-rw-r--r-- | luni/src/module/java/module-info.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/luni/src/module/java/module-info.java b/luni/src/module/java/module-info.java index 7f11b170d3..cafcf9b9ad 100644 --- a/luni/src/module/java/module-info.java +++ b/luni/src/module/java/module-info.java @@ -119,4 +119,5 @@ module java.base { exports libcore.net.http; exports libcore.reflect; exports libcore.util; + exports org.json; } |