}
}
public void addToDataPool() {
for (Entry<Class, Map<Long, Object>> sDao : simpleDaos.entrySet()) {
Dao tmpDao = dataPool.getDao(sDao.getKey());
if (tmpDao == null) {
logger.warn("Dao for " + sDao.getKey() + " not found in data pool!?");
continue;
}
tmpDao.attachAll(sDao.getValue().values());
}
}