1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 16:44:48 +02:00

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

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) { public int[] getRGB(BufferedImage image, int x, int y, int width, int height, int[] pixels) {
int type = image.getType(); int type = image.getType();
if (type == BufferedImage.TYPE_INT_ARGB || type == BufferedImage.TYPE_INT_RGB) 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); return image.getRGB(x, y, width, height, pixels, 0, width);
} }