.findHistoricVariableInstancesByQueryCriteria(this, page);
if (historicVariableInstances!=null) {
for (HistoricVariableInstance historicVariableInstance: historicVariableInstances) {
HistoricVariableInstanceEntity variableInstanceEntity = (HistoricVariableInstanceEntity) historicVariableInstance;
if (shouldFetchSerializedValueFor(variableInstanceEntity)) {
try {
variableInstanceEntity.getSerializedValue();
if (shouldFetchValueFor(variableInstanceEntity)) {
variableInstanceEntity.getValue();
}
} catch(Exception t) {
// do not fail if one of the variables fails to load
LOGGER.log(Level.FINE, "Exception while getting value for variable", t);