Adding Lists
I have two lists that I would like to add together to make one big list how would I do it with these lists?
List<LinkedHashMap><String, String>> adHocReportData = reportDAO.fetchReportData(adHocChartQuery);
List<LinkedHashMap><String, String>> benchmarkData = reportDAO.fetchReportData(benchmarkQuery);
Thanks for any assistance,
Rachel

