Version: 2.2.2 Update

This commit is contained in:
AnonymousUser
2022-05-04 22:48:44 +08:00
parent acff96ed7b
commit d7f04526b4

View File

@@ -189,7 +189,7 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
}
int indexOfTab = this.jTabbedPane.indexOfTab(i);
JScrollPane jScrollPane = new JScrollPane(new JTable(data, new Object[] {"Information"}));
// 使用removeAll会导致UI出现空白的情况为了改善用户侧采用remove的方式进行删除
// 使用removeAll会导致UI出现空白的情况为了改善用户侧采用remove的方式进行删除
if (indexOfTab != -1) {
this.jTabbedPane.remove(indexOfTab);
}