Skip to content

Commit

Permalink
Fix Grep results toString.
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyD97 committed Aug 3, 2023
1 parent 14ac567 commit 6f39503
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ public boolean isLeaf(Object node) {
@Override
public Object getValueAt(Object node, int column) {
if(node instanceof GrepResults) {
if (column == 0) return ((GrepResults) node).getLogEntry().toString();
if (column == 1) return ((GrepResults) node).getRequestMatches();
if (column == 0) return ((GrepResults) node).getLogEntry().getUrlString();
if (column == 2) return ((GrepResults) node).getResponseMatches();
if (column == 3) return ((GrepResults) node).getMatches().size();
else return "";
Expand Down

0 comments on commit 6f39503

Please sign in to comment.