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
IMHO it should be present as it's @since 1.4. My problem is that it gets used in the code Lombok generates, so something as trivial as
@since 1.4
@Value public class Broken { private double price; }
fails to compile with "The method compare(double, double) is undefined for the type Double", which I can't fix. Similarly, Float.Compare is missing.
Float.Compare
The good news is that these are so far the only obstacles in using Lombok.
The text was updated successfully, but these errors were encountered:
@shannah I'm leaving milestone assignment to you as VM work is always a pain.
Sorry, something went wrong.
Added compare() and compareTo() methods to boxed number types in CLDC…
dede94c
…11. Number types now implement Comparable also. Added missing methods to java.lang.String in CLDC11. #2604
Added methods to CLDC11 and ensured that they are implemented in iOS VM. Other VMs should already support these.
shannah
No branches or pull requests
IMHO it should be present as it's
@since 1.4
. My problem is that it gets used in the code Lombok generates, so something as trivial asfails to compile with "The method compare(double, double) is undefined for the type Double", which I can't fix. Similarly,
Float.Compare
is missing.The good news is that these are so far the only obstacles in using Lombok.
The text was updated successfully, but these errors were encountered: