Merge branch '2.2.x' into 2.3.x

Closes gh-23441
This commit is contained in:
Phillip Webb
2020-09-21 22:27:45 -07:00
2 changed files with 6 additions and 1 deletions

View File

@@ -72,7 +72,11 @@ final class StringSequence implements CharSequence {
return new StringSequence(this.source, subSequenceStart, subSequenceEnd);
}
boolean isEmpty() {
/**
* Returns {@code true} if the sequence is empty. Public to be compatible with JDK 15.
* @return {@code true} if {@link #length()} is {@code 0}, otherwise {@code false}
*/
public boolean isEmpty() {
return length() == 0;
}