GT-3599 - Auto-analysis - updated to allow the transaction to be

committed for non-severe exceptions
This commit is contained in:
dragonmacher 2020-03-20 20:25:05 -04:00
parent c1a1482988
commit 1aa7f396af
6 changed files with 291 additions and 76 deletions

View file

@ -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;
}
}