Andi Vajda <[email protected]> wrote:
>
> On Mon, 7 Mar 2011, Bill Janssen wrote:
>
> > Andi Vajda <[email protected]> wrote:
> >
> >>>>>> Where does t_JArray get defined? I can't find it.
> >>
> >> I'm not sure there is one. If you can provide me with a piece of Java
> >> to reproduce this, I can fix it faster.
> >
> > I've narrowed this down to three iterator classes which cause this
> > issue. Now I've got to see what's the common factor.
>
> Probably an array being used as a type parameter ?
Like this?
public ArrayList<int[]> state;
Or
public class foo2 implements Iterator<int[]>{
Or
public int[] next() {
Bill