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
Java 15 introduced CharSequence#isEmpty(): https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/lang/CharSequence.html#isEmpty()
CharSequence#isEmpty()
When trying to use it in GWT like this:
boolean empty = new StringBuilder().isEmpty();
The compiler throws the error:
The method isEmpty() is undefined for the type StringBuilder
I'm guessing it needs to be added to https://github.com/gwtproject/gwt/blob/main/user/super/com/google/gwt/emul/java/lang/CharSequence.java or something like that.
The text was updated successfully, but these errors were encountered:
List of other missing methods: #9872
Sorry, something went wrong.
See also #9991
small patch for gwtproject#10091
f3aa825
Successfully merging a pull request may close this issue.
Java 15 introduced
CharSequence#isEmpty()
: https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/lang/CharSequence.html#isEmpty()When trying to use it in GWT like this:
The compiler throws the error:
I'm guessing it needs to be added to https://github.com/gwtproject/gwt/blob/main/user/super/com/google/gwt/emul/java/lang/CharSequence.java or something like that.
The text was updated successfully, but these errors were encountered: