Closed calvincestari closed 10 years ago
This isn't a bug and it doesn't change any behaviour since count == 1
and (count > 1)
can't both be true at the same time.
if (count == 1) {
} if ((count > 1) && error != nil) {
if (count == 1) {
} else if ((count > 1) && error != nil) {
Should this not be an else statement?