ColorModel.java (getAlpha(Object)): Call getAlpha, not getBlue.
* java/awt/image/ColorModel.java (getAlpha(Object)): Call getAlpha, not getBlue. From-SVN: r49203
This commit is contained in:
@@ -293,7 +293,7 @@ public abstract class ColorModel implements Transparency
|
||||
* @see #getRed(Object)
|
||||
*/
|
||||
public int getAlpha(Object inData) {
|
||||
return getBlue(getPixelFromArray(inData));
|
||||
return getAlpha(getPixelFromArray(inData));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user