I get a StackOverflowError when integrating JDK Mission Control on Eclipse with DevStyle on “Threads” page.
It could be fixed in org.eclipse.swt.widgets.ScrollBarAdapter setSelection by checking in setSelection if the new selection is different from the previous selection.
@Override
public void setSelection(int selection) {
if (scrollBar == null || scrollBar.isDisposed() || selection == scrollBar.getSelection()) {
return;
}
scrollBar.setSelection(selection);
scrollBar.notifyListeners(SWT.None);
}
Do you have a Github where i could propose a pull request ?
Thx