DATACMNS-1148 - Return primitive boolean in PartTree.isExistsProjection(…).

Declare primitive return type to avoid nullable return values.
This commit is contained in:
Mark Paluch
2017-08-28 13:26:33 +02:00
parent 67f52d5d70
commit c091d4db56

View File

@@ -138,7 +138,7 @@ public class PartTree implements Streamable<OrPart> {
* @return
* @since 1.13
*/
public Boolean isExistsProjection() {
public boolean isExistsProjection() {
return subject.isExistsProjection();
}