Skip to content

Commit

Permalink
fix maz counting bug when creating trip table #45
Browse files Browse the repository at this point in the history
  • Loading branch information
i-am-sijia authored Jul 1, 2024
1 parent 4d41864 commit 7fcd6ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ public MazSets() {
int maxMazSet2 = 0;
int maxMazSet3 = 0;

for(int row = 1; row< mgraDataTable.getRowCount();++row){
for(int row = 1; row<= mgraDataTable.getRowCount();++row){

int mgra = (int) mgraDataTable.getValueAt(row, "MAZ");
int county = (int) mgraDataTable.getValueAt(row,mgraManager.MGRA_COUNTY_FIELD_NAME);
Expand Down

0 comments on commit 7fcd6ae

Please sign in to comment.