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 filePatch | File delta | Description |
---|---|---|
remove UnsupportedAppUsage.patch | (download) |
json/src/main/java/org/json/JSONArray.java |
3 0 + 3 - 0 ! |
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 ! |
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 ! |
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 ! |
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. |