Fixed
Status Update
Comments
ra...@google.com <ra...@google.com>
ap...@google.com <ap...@google.com> #3
Project: platform/frameworks/support
Branch: androidx-master-dev
commit 9532c913ccc1fc2fa6181bb941feb7204b786f0c
Author: Rahul Ravikumar <rahulrav@google.com>
Date: Wed Aug 08 10:51:48 2018
Fix @NonNull annotations in `Data`.
Test: Existing tests pass.
Change-Id: I75f12a04f6640fc1b8e4f4cc3451ca4e65db4690
Fixes: b/112275229
M work/workmanager/src/main/java/androidx/work/Data.java
https://android-review.googlesource.com/728166
https://goto.google.com/android-sha1/9532c913ccc1fc2fa6181bb941feb7204b786f0c
Branch: androidx-master-dev
commit 9532c913ccc1fc2fa6181bb941feb7204b786f0c
Author: Rahul Ravikumar <rahulrav@google.com>
Date: Wed Aug 08 10:51:48 2018
Fix @NonNull annotations in `Data`.
Test: Existing tests pass.
Change-Id: I75f12a04f6640fc1b8e4f4cc3451ca4e65db4690
Fixes:
M work/workmanager/src/main/java/androidx/work/Data.java
Description
android.arch.work:work-runtime-ktx:1.0.0-alpha06
Version used:
Theme used: N/A
Devices/Android versions reproduced on: All
- Relevant code to trigger the issue.
class SomeWorker: Worker() {
fun doWork() {
val input = inputData.getIntArray("key")
if( input == null || input.isEmpty() ) {
// work
}
}
}
there is a lint warning on "input == null" saying it is always false. This is because the return type is annotated with @NonNull. The javadoc and code clearly say/show that null can be returned.
The same holds true for getBooleanArray(String)
- A screenrecord or screenshots showing the issue (if UI related).
N/A