Name: bb33257 Date: 08/06/98
CompactXXXArray.hasNext() contains code that will never be executed,
----
// Find the next character in the array
public boolean hasNext() {
nextIndex = index;
boolean done = true;
if (index != nextIndex) // hasNext has already been called, and there's a new
// index waiting to be returned
return true;
}
.....
----
nextIndex is always set to be equal to index when entering this method.
======================================================================
###@###.### 11/2/04 18:19 GMT
CompactXXXArray.hasNext() contains code that will never be executed,
----
// Find the next character in the array
public boolean hasNext() {
nextIndex = index;
boolean done = true;
if (index != nextIndex) // hasNext has already been called, and there's a new
// index waiting to be returned
return true;
}
.....
----
nextIndex is always set to be equal to index when entering this method.
======================================================================
###@###.### 11/2/04 18:19 GMT