Simple, I am trying to check if int[] distances is empty or not.
Why does this not work?
My Code:
int[] distances = {3,6,7,6,1,8,8,2,3,4,5,9};
if(distances != null && !distances.isEmpty()) {
throw new TransportException("No routes in entry");
}
else {
return distances;
}
There is no
isEmpty()
method you can call on simple arrays. Just compare its length to 0.