return getPersistenceManagerFactory((Map) props);
}
// method called by the JDOHelper.getPersistenceManagerFactory method
public static PersistenceManagerFactory getPersistenceManagerFactory(
Map m) throws Throwable {
AbstractSpeedo instance;
synchronized (INSTANCES) {
instance = (AbstractSpeedo) INSTANCES.get(m);
if (instance == null) {
instance = new JDOSpeedo(m);
INSTANCES.put(m, instance);