Skip to content

Commit

Permalink
remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Jun 24, 2023
1 parent b2e14f6 commit 265de20
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/main/java/org/broad/igv/gwas/GWASTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,17 +126,6 @@ public GWASTrack(ResourceLocator locator,
this.columns = columns;
}


private double getMaxValue(Map<String, List<GWASFeature>> gData) {
double maxValue = -1;
for (List<GWASFeature> features : gData.values()) {
for (GWASFeature f : features) {
if (f.value > maxValue) maxValue = f.value;
}
}
return maxValue;
}

@Override
public boolean isNumeric() {
return true;
Expand Down

0 comments on commit 265de20

Please sign in to comment.