Skip to content

Commit

Permalink
trim IPs in the RangeFeederGUI, thanks to @Dash11235
Browse files Browse the repository at this point in the history
  • Loading branch information
angryziber committed Jun 11, 2024
1 parent 4225332 commit 01bd179
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/net/azib/ipscan/gui/feeders/RangeFeederGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ protected void setInterfaceAddress(InterfaceAddress ifAddr) {
}

public Feeder createFeeder() {
startIPText.setText(startIPText.getText().trim());
endIPText.setText(endIPText.getText().trim());
return feeder = new RangeFeeder(startIPText.getText(), endIPText.getText());
}

Expand Down

0 comments on commit 01bd179

Please sign in to comment.