On Thu, Nov 8, 2012 at 10:02 AM, <[email protected]> wrote: > - private static int counter = 0; > + /** Counter used for generating unique component ids. */ > + private static long counter = 0;
Should this be an AtomicLong instead? Statics make me cringe in a multithreaded environment. Martijn
