OpenNTF / org.openntf.domino

Open replacement for lotus.domino package in HCL Domino
Apache License 2.0
66 stars 34 forks source link

org.openntf.domino.impl.DocumentCollection.isEmpty the other way around #156

Closed shillem closed 5 years ago

shillem commented 8 years ago

It should be:

public boolean isEmpty() {
        return this.size() == 0;
 }

and not

public boolean isEmpty() {
        return this.size() > 0;
}