Merge remote-tracking branch 'origin/patch'

This commit is contained in:
ghidravore 2020-11-30 16:52:08 -05:00
commit b23c8ca435
11 changed files with 60 additions and 31 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();
}