Package: android-platform-libcore / 10.0.0+r36-1

Metadata

Package Version Patches format
android-platform-libcore 10.0.0+r36-1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
remove UnsupportedAppUsage.patch | (download)

json/src/main/java/org/json/JSONArray.java | 3 0 + 3 - 0 !
json/src/main/java/org/json/JSONObject.java | 7 0 + 7 - 0 !
json/src/main/java/org/json/JSONStringer.java | 13 0 + 13 - 0 !
json/src/main/java/org/json/JSONTokener.java | 10 0 + 10 - 0 !
4 files changed, 33 deletions(-)

 remove unsupportedappusage annotation
 UnsupportedAppUsage is an annotation that is used to specify that the class
 or object used isn't techically a part of the Android SDK and thus isn't
 supported. It is more of a warning for ourselves. It can be safely neglected.
remove NonNull.patch | (download)

json/src/main/java/org/json/JSONObject.java | 55 27 + 28 - 0 !
1 file changed, 27 insertions(+), 28 deletions(-)

 remove nonnull annotation.
 NonNull annnotation is just a warning that hints when you pass null to
 methods that otherwise expect a non null arguments. Can be safely
 ignored since it otherwise fails the build as it comes from libcore itself,
 which we don't build.
remove Nullable.patch | (download)

json/src/main/java/org/json/JSONObject.java | 47 23 + 24 - 0 !
1 file changed, 23 insertions(+), 24 deletions(-)

 remove nullable annotation
 Nullable annnotation is just a warning that hints you can pass null to
 methods that can take null arguments. Can be safely ignored since it
 otherwise fails the build as it comes from libcore itself,
 which we don't build.
remove CorePlatformApi.patch | (download)

json/src/main/java/org/json/JSONObject.java | 1 0 + 1 - 0 !
1 file changed, 1 deletion(-)

 remove libcore.api.coreplatformapi annotation
 The annotation is avaiable in libcore. We only build json, so we cannot use it.
 It can be safely ignored.