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:
parent
737409955a
commit
da4a30f852
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue