I have used 2d arrays many times before, but for some reason eclipse keeps putting a red line under ; at the end of the declaration line for it. When I run it I get an unresolved compilation error. Here is my code:
private Zone[][] zones = new Zone[10][10];
What is going on here?