TMC-IMAGE: Fixed some typos.

This commit is contained in:
Harald Kuhr 2013-06-05 10:46:41 +02:00
parent e72988aa7b
commit 2cf1c6e43b

View File

@ -66,7 +66,7 @@ public class BrightnessContrastFilter extends RGBImageFilter {
canFilterIndexColorModel = true;
}
// Use a precalculated lookup table for performace
// Use a pre-calculated lookup table for performance
private final int[] LUT;
/**
@ -149,7 +149,6 @@ public class BrightnessContrastFilter extends RGBImageFilter {
*
* @return the filtered pixel value in the default color space
*/
public int filterRGB(int pX, int pY, int pARGB) {
// Get color components
int r = pARGB >> 16 & 0xFF;