Skip to content

Commit

Permalink
Fix input colors parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
ivartb committed Jun 3, 2022
1 parent d3bb960 commit e2c692b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/HeatMapMakerMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected void runImpl() throws ExecutionFailedException {

// parse colors file
String[] colors;
if (colorsFile != null) {
if (colorsFile.get() != null) {
ArrayList<String> colors_a = new ArrayList<String>();
try (Scanner s = new Scanner(colorsFile.get())) {
while (s.hasNext()) {
Expand Down

0 comments on commit e2c692b

Please sign in to comment.