GATKReportColumn optimizations

-- Was TreeMap even though the sorting wasn't used.  Replaced with LinkedHashMap.
This commit is contained in:
Mark DePristo 2012-03-26 10:39:45 -04:00
parent a0dcac9ec6
commit 11b6fd990a
1 changed files with 2 additions and 4 deletions

View File

@ -26,14 +26,12 @@ package org.broadinstitute.sting.gatk.report;
import org.apache.commons.lang.math.NumberUtils;
import java.util.Arrays;
import java.util.Collection;
import java.util.TreeMap;
import java.util.*;
/**
* Holds values for a column in a GATK report table
*/
public class GATKReportColumn extends TreeMap<Object, Object> {
public class GATKReportColumn extends LinkedHashMap<Object, Object> {
final private String columnName;
final private Object defaultValue;
final private String format;