if (allocatedResources.contains(username)) {
filteredItems.add(workItemRecord);
}
} catch (YQueryException e) {
e.printStackTrace();
Problem warning = new Problem();
warning.setTimeStamp(new Date());
warning.setSource(workItemRecord.getID());
warning.setMessageType(Problem.EMPTY_RESOURCE_SET_MESSAGETYPE);
_dbConnector.saveWarning(warning);
}
} catch (SQLException e) {
e.printStackTrace();
} catch (HibernateException e) {