Fix NoWhitespaceAfter checkstyle violation

in smack-jingle-old
This commit is contained in:
Florian Schmaus 2017-04-25 17:45:11 +02:00
parent 45edc969c9
commit 45b790bbbb
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public abstract class AbstractBufferedImageOp implements BufferedImageOp, Clonea
public int[] getRGB(BufferedImage image, int x, int y, int width, int height, int[] pixels) {
int type = image.getType();
if (type == BufferedImage.TYPE_INT_ARGB || type == BufferedImage.TYPE_INT_RGB)
return (int [])image.getRaster().getDataElements(x, y, width, height, pixels);
return (int[])image.getRaster().getDataElements(x, y, width, height, pixels);
return image.getRGB(x, y, width, height, pixels, 0, width);
}