> - Random r = new Random(); > + Random r = new Random(0); If you really want a local Random why not make it depend on the current real seed?
Random r = new Random(random().nextLong()); Just curious -- why not just: Random r = random()? D. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
