Skip to content

Commit

Permalink
do not use "final" int before it's initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
abyrd committed Nov 22, 2023
1 parent e7796b3 commit 46abd8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public String[] columnHeaders () {
headers.add("destinations");
headers.add("percentile");
// The number of minutes needed to reach d destination opportunities
headers.add("D" + dualThreshold);
headers.add("dual");
// The opportunity density during each of 120 minutes
for (int m = 0; m < 120; m += 1) {
headers.add(Integer.toString(m));
Expand Down

0 comments on commit 46abd8a

Please sign in to comment.