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
Error Prone has required JDK 17 since Sept. 2024 (version 2.32.0). NullAway currently still runs on JDK 11. Requiring JDK 17 could let us do some cleanup:
Eventually, better support for reading type-use annotations from bytecodes may be ported back to JDK 17 (https://bugs.openjdk.org/browse/JDK-8346471). If we could rely on this fix, we could delete a lot of messy and tricky code.
We could also use features like records and pattern matching instanceof to clean up the code more.
Nothing urgent, but we should figure out when to make this transition. Maybe Sept. 2025 would be a good time?
The text was updated successfully, but these errors were encountered:
Error Prone has required JDK 17 since Sept. 2024 (version 2.32.0). NullAway currently still runs on JDK 11. Requiring JDK 17 could let us do some cleanup:
Nothing urgent, but we should figure out when to make this transition. Maybe Sept. 2025 would be a good time?
The text was updated successfully, but these errors were encountered: