Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add @CanIgnoreReturnValue as appropriate to Gson methods. #2369

Merged
merged 1 commit into from
Apr 10, 2023

Commits on Apr 10, 2023

  1. Add @CanIgnoreReturnValue as appropriate to Gson methods.

    This annotation indicates that return value of the annotated method does
    not need to be used. If it is _not_ present on a non-void method, and if
    Error Prone's `CheckReturnValue` is active, then calling the method
    without using the result is an error. However, we are not enabling
    `CheckReturnValue` by default here.
    
    Also update some code that does ignore return values, so that the
    returned value is used, if only by assigning it to an unused variable.
    eamonnmcmanus committed Apr 10, 2023
    Configuration menu
    Copy the full SHA
    233137c View commit details
    Browse the repository at this point in the history