View Single Post
  #22 (permalink)  
Old 01-23-2008, 12:37 AM
tim's Avatar
tim tim is offline
Senior Member
 
Join Date: Dec 2007
Location: South Africa
Posts: 334
tim is on a distinguished road
Bug found
Sorry for that.

This time I use an IDE and I found a silly bug.
Change this part:
Code:
Random generator = new Random(); int pos = generator.nextInt(A.length);
to this
Code:
Random generator = new Random(); int pos = generator.nextInt(countA);
I tested the method and it should work now.
__________________
If your ship has not come in yet then build a lighthouse.
Reply With Quote