Fixes #3289 Javadoc inverted the boolean value

The method returned the opposite of what the Javadoc declares it will do. I assume that the default implementation is right and the Javadoc contained an error. I think it's somewhat confusing to have Javadoc say A and the method do B. Aligning them to each other will help implementors to understand clearly what is expected.
This commit is contained in:
Balder VC 2022-01-10 15:02:25 +01:00 committed by GitHub
parent 737409955a
commit da4a30f852
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ public interface IBundleProvider {
Integer size();
/**
* This method returns <code>true</code> if the bundle provider knows that at least
* This method returns <code>false</code> if the bundle provider knows that at least
* one result exists.
*/
default boolean isEmpty() {