5280 make comment regarding toggling of order more clear

This commit is contained in:
William Schaefer 2019-07-10 13:10:08 -04:00
parent cbf0121559
commit ec3ab9b066

View File

@ -102,7 +102,7 @@ final class LogicalImagerPanel extends JPanel implements DocumentListener {
imageTableSelect();
}
});
//sort on specified column in decending orders
//sort on specified column in decending order, the first call will toggle to ascending order, the second to descending order
imageTable.getRowSorter().toggleSortOrder(COLUMN_TO_SORT_ON_INDEX);
imageTable.getRowSorter().toggleSortOrder(COLUMN_TO_SORT_ON_INDEX);
}