You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have support for the Error Prone's plugin NullAway. It is getting really popular and is quite useful to help eliminate NullPointerException.
The console output looks like this:
:sample:compileReleaseNdk NO-SOURCE
:sample:processReleaseJavaRes NO-SOURCE
/home/travis/build/leinardi/FloatingActionButtonSpeedDial/library/src/main/java/com/leinardi/android/speeddial/SpeedDialActionItem.java:162: error: [NullAway] initializer method does not guarantee @NonNull field mLabel is initialized along all control-flow paths (remember to check for exceptions or early returns).
public Builder(@IdRes int id, @DrawableRes int fabImageResource) {
^
(see http://t.uber.com/nullaway )
/home/travis/build/leinardi/FloatingActionButtonSpeedDial/library/src/main/java/com/leinardi/android/speeddial/SpeedDialActionItem.java:175: error: [NullAway] initializer method does not guarantee @NonNull field mLabel is initialized along all control-flow paths (remember to check for exceptions or early returns).
public Builder(@IdRes int id, @Nullable Drawable drawable) {
^
(see http://t.uber.com/nullaway )
2 errors
My guess is that shouldn't be too different to parse than the base Error Prone error.
The text was updated successfully, but these errors were encountered:
It would be nice to have support for the Error Prone's plugin NullAway. It is getting really popular and is quite useful to help eliminate
NullPointerException
.The console output looks like this:
My guess is that shouldn't be too different to parse than the base Error Prone error.
The text was updated successfully, but these errors were encountered: