We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Void is the ADL unit type, which in java we map to the Void type.
In java there are no instances of Void other than null. So we use null, but this breaks of of the null checks in the generated struct and union code.
The text was updated successfully, but these errors were encountered:
Actually, it's not just a problem for Void - it will also happen for Nullable.
Void
Perhaps in java, generic parameters shouldn't do null checks.
Sorry, something went wrong.
Actually no , it is only problem for Void - Nullable in ADL maps to Java Optional
Resolved with: 974e2e7
No branches or pull requests
Void is the ADL unit type, which in java we map to the Void type.
In java there are no instances of Void other than null. So we use null, but this breaks of of the null checks in the generated struct and union code.
The text was updated successfully, but these errors were encountered: