mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GT-3599 - Auto-analysis - updated to allow the transaction to be
committed for non-severe exceptions
This commit is contained in:
parent
c1a1482988
commit
1aa7f396af
6 changed files with 291 additions and 76 deletions
|
@ -20,7 +20,7 @@ import java.beans.PropertyChangeListener;
|
|||
import java.util.Collections;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.swing.ImageIcon;
|
||||
import javax.swing.*;
|
||||
import javax.swing.event.ChangeListener;
|
||||
|
||||
import org.jdom.Element;
|
||||
|
@ -436,4 +436,19 @@ public class DummyTool extends PluginTool {
|
|||
public PluginClassManager getPluginClassManager() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addStatusComponent(JComponent c, boolean addBorder, boolean rightSide) {
|
||||
//do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeStatusComponent(JComponent c) {
|
||||
//do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public JFrame getToolFrame() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue