To avoid having to create multiple instances of the org.reflections.Reflections class I was thinking of just creating one and reusing as needed. Anyone know if this class is thread safe?
If its not thread safe I know I can use Java's ThreadLocal wrapper (in case anyone was going to respond with that).