Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
sumanthreddy542 committed Jul 30, 2021
1 parent 010f0ce commit d377a3f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/edu/iastate/metnet/metaomgraph/FilterableTableModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,11 @@ public void applyFilter(String[] values) {
String col = findMe.split(delim)[1];
if(col.contentEquals("ALL")) {
allCols = true;
anyCol = false;
findMe = findMe.split(delim)[0];
} else if(col.contentEquals("ANY")) {
anyCol = true;
allCols = false;
findMe = findMe.split(delim)[0];
} else {
// check if col is a valid integer
Expand Down

0 comments on commit d377a3f

Please sign in to comment.