facebook

StackOverflowError when integrating JDK Mission Control on Eclipse with DevStyle

  1. DevStyle
  2.  > 
  3. Suggestions
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #698827 Reply

    RoiSoleil
    Participant

    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

    #698832 Reply

    Brian Fernandes
    Moderator

    Appreciate you figuring this out for us! DevStyle isn’t open source, so you cannot submit a PR, unfortunately.

    Thanks again.

    #698835 Reply

    RoiSoleil
    Participant

    Do you plan to fix it in a future release ?

    #699311 Reply

    RoiSoleil
    Participant

    Any news ?

    #699910 Reply

    RoiSoleil
    Participant

    I still have the issue with the new version. Could you fix it for the next one ?

Viewing 5 posts - 1 through 5 (of 5 total)
Reply To: StackOverflowError when integrating JDK Mission Control on Eclipse with DevStyle

You must be logged in to post in the forum log in