Closed
Description
Hi, I was checking the code in N1qlJoinResolver and there's a duplicated condition, which makes the 2nd not reachable :
I think (from reading comments) :
- the 1st condition should be
} else if (lhCollection != null && rhCollection == null) {
(or even shorter} else if (lhCollection != null) {
) - the 2nd should be
} else if (lhCollection == null && rhCollection != null) {
(or even shorter} else if (rhCollection != null) {
)