I have a small bug here somewhere in my code! I must be blind because i really can’t seem to find it or figure it out. I have a list of byte arrays. I’m parsing out the first 2 elements as well as the very last element in each array. If i get the value -16, -11 or -7 i want to keep the values. For some reason, the last value in on of the arrays is not being deleted. Why is this happening?
Share
Have you tried debugging it?
When you have
b = -110it passed this condition:
hence the
data.add(b)is executed.