I get this exception on the indicated line when x is anything but 1...why?
-Greg :-Q
Code:
private void resizeArray(int x)
{
int temp[][] = new int[x][2];
for (int i=0; i<x; i++)
{
/*--->*/temp[i][0] = matches[i][0];
temp[i][1] = matches[i][1];
}
matches = temp;
}
![flaga.gif](http://www.gifs.net/animate/flaga.gif)