TMI-CORE: Added comments/fixed typos no functional changes.

This commit is contained in:
Harald Kuhr 2013-09-08 14:23:13 +02:00
parent 23ae6a966a
commit 10b95b225f
2 changed files with 2 additions and 1 deletions

View File

@ -235,7 +235,7 @@ public abstract class ImageReaderBase extends ImageReader {
// If param is non-null, use it // If param is non-null, use it
if (param != null) { if (param != null) {
// Try to get the explicit destinaton image // Try to get the explicit destination image
BufferedImage dest = param.getDestination(); BufferedImage dest = param.getDestination();
if (dest != null) { if (dest != null) {

View File

@ -209,6 +209,7 @@ public final class ColorSpaces {
// being 1 (01000000) - "Media Relative Colormetric" in the offending profiles, // being 1 (01000000) - "Media Relative Colormetric" in the offending profiles,
// and 0 (00000000) - "Perceptual" in the good profiles // and 0 (00000000) - "Perceptual" in the good profiles
// (that is 1 single bit of difference right there.. ;-) // (that is 1 single bit of difference right there.. ;-)
// See http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7064516
// This is particularly annoying, as the byte copying isn't really necessary, // This is particularly annoying, as the byte copying isn't really necessary,
// except the getRenderingIntent method is package protected in java.awt.color // except the getRenderingIntent method is package protected in java.awt.color