On Wed, 6 Apr 2022 10:27:12 GMT, Tejesh R <[email protected]> wrote:
>> Removed the println() line from the Interrupted catch block. Since
>> waitForID() Interrupt indicates completion of Image Loading, println as
>> Interrupt handling was not required.
>
> Tejesh R has updated the pull request incrementally with one additional
> commit since the last revision:
>
> Updated based on Reiview comments
if (interrupted && ((loadStatus & MediaTracker.LOADING )!= 0)) {
if (interrupted && ((loadStatus & MediaTracker.LOADING) != 0)) {
space at correct position
-------------
Changes requested by psadhukhan (Reviewer).
PR: https://git.openjdk.java.net/jdk/pull/7754