Skip to content
Snippets Groups Projects
Commit a1fac836 authored by pompert's avatar pompert
Browse files

BugID: 701

Additions:
- None
Mods:
- Modified the Dataset value collection to LinkedList to pass on data in the same order as they were retrieved from ParmDB
parent ab634d3f
No related branches found
No related tags found
No related merge requests found
......@@ -26,8 +26,8 @@ package nl.astron.lofar.java.cep.jparmfacade;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.TimeZone;
import java.util.Vector;
import nl.astron.lofar.java.gui.plotter.IPlotDataAccess;
......@@ -91,7 +91,7 @@ public class PlotDataAccessParmDBImpl implements IPlotDataAccess{
this.initiateConnectionToParmDB();
}
HashMap<String,Object> returnMap = new HashMap<String, Object>();
HashSet<HashMap> returnValues = new HashSet<HashMap>();
LinkedList<HashMap> returnValues = new LinkedList<HashMap>();
if(parmDB != null){
Vector names;
try{
......
......@@ -26,8 +26,8 @@ package nl.astron.lofar.java.cep.jparmfacade;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.TimeZone;
import java.util.Vector;
import nl.astron.lofar.java.gui.plotter.IPlotDataAccess;
......@@ -91,7 +91,7 @@ public class PlotDataAccessParmDBImpl implements IPlotDataAccess{
this.initiateConnectionToParmDB();
}
HashMap<String,Object> returnMap = new HashMap<String, Object>();
HashSet<HashMap> returnValues = new HashSet<HashMap>();
LinkedList<HashMap> returnValues = new LinkedList<HashMap>();
if(parmDB != null){
Vector names;
try{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment