RFR: 8236987: Remove call to System.out.println from ImageIcon.loadImage [v13]

Prasanta Sadhukhan psadhukhan at openjdk.java.net
Fri Apr 8 08:27:46 UTC 2022


On Wed, 6 Apr 2022 10:27:12 GMT, Tejesh R <duke at openjdk.java.net> 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



More information about the client-libs-dev mailing list