locationtech / udig-platform

uDig parent project containing all core components. More plugins can be found in community repos: http://github.com/uDig-Community
http://udig.refractions.net
190 stars 133 forks source link

Replace deprecated 'getImageData' with 'getImageData(int)' #613

Closed sschulz92 closed 2 years ago

sschulz92 commented 2 years ago

Within this PR I want to replace the deprecated method

@Deprecated
public ImageData getImageData() {
    return getImageData(100);
}

with the mentioned replacement:

getImageData(100);

This PR covers all projects, this deprecated method is gone afterwards.

fgdrf commented 2 years ago

Looks like you have a run removing deprecation warnings. Thanks for your contribution.

This pull adresses deprecation warning and switches to getImageData(100)

Are you kind to have a look at the test failure, is it related to the changeset? Test failure not related to this changeset

fgdrf commented 2 years ago

Created an issue for "flaky" test case #616