fixed stack trace when exporting

This commit is contained in:
ghidravore 2020-11-25 13:11:16 -05:00
parent 4300bec382
commit 1259632113
5 changed files with 24 additions and 5 deletions

View file

@ -39,4 +39,9 @@ public class DummyGraphDisplayListener implements GraphDisplayListener {
// I'm a dummy
}
@Override
public void dispose() {
// I'm a dummy
}
}

View file

@ -49,4 +49,9 @@ public interface GraphDisplayListener {
*/
public GraphDisplayListener cloneWith(GraphDisplay graphDisplay);
/**
* Tells the listener that it is no longer needed and it can release any listeners/resources
*/
public void dispose();
}