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 committed Jun 16, 2021
1 parent b41a663 commit 07ac0b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,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 07ac0b6

Please sign in to comment.