Skip to content

Commit

Permalink
Merge pull request #59 from KenjiroIchise/master
Browse files Browse the repository at this point in the history
Improved speed of deletion.
  • Loading branch information
prprhyt authored Feb 4, 2020
2 parents 63a7967 + 4d262cb commit 2788de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/core/packetproxy/gui/GUIHistory.java
Original file line number Diff line number Diff line change
Expand Up @@ -556,8 +556,8 @@ public void actionPerformed(ActionEvent actionEvent) {
for(int i=0;i<table.getRowCount();++i) {
Integer id = (Integer) table.getValueAt(i, 0);
colorManager.clear(id);
packets.delete(packets.query(id));
}
packets.deleteAll();
updateAll();
} catch (Exception e2) {
e2.printStackTrace();
Expand Down

0 comments on commit 2788de9

Please sign in to comment.