Skip to content
Snippets Groups Projects
Commit 9e2055eb 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 added.
parent a1fac836
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@ package nl.astron.lofar.java.gui.plotter.test;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import nl.astron.lofar.java.gui.plotter.IPlotDataAccess;
import nl.astron.lofar.java.gui.plotter.PlotConstants;
import nl.astron.lofar.java.gui.plotter.exceptions.PlotterDataAccessException;
......@@ -80,7 +81,7 @@ public class PlotDataAccessTestImpl implements IPlotDataAccess{
String yAxisUnits = "MHz";
data.put(PlotConstants.DATASET_YAXISUNIT,yAxisUnits);
HashSet<HashMap> values = new HashSet<HashMap>();
LinkedList<HashMap> values = new LinkedList<HashMap>();
HashMap<String,Object> aLine = new HashMap<String,Object>();
......@@ -156,7 +157,7 @@ public class PlotDataAccessTestImpl implements IPlotDataAccess{
data.put(PlotConstants.DATASET_ZAXISUNIT,yAxisUnits);
HashSet<HashMap> values = new HashSet<HashMap>();
LinkedList<HashMap> values = new LinkedList<HashMap>();
HashMap<String,Object> aGrid = new HashMap<String,Object>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment