Fix varargs syntax error in ScalrWrapper.java

This commit is contained in:
Richard Cordovano 2020-03-11 18:46:55 -04:00
parent b7e797cb5b
commit 2f1da70aef

View File

@ -37,7 +37,7 @@ public class ScalrWrapper {
return Scalr.resize(input, size, Scalr.OP_ANTIALIAS);
}
public static synchronized BufferedImage resize(BufferedImage bufferedImage, Method method, Scalr.Mode mode, int width, int height, BufferedImageOp... ops) {
public static synchronized BufferedImage resize(BufferedImage bufferedImage, Method method, Scalr.Mode mode, int width, int height, BufferedImageOp ...ops) {
return Scalr.resize(bufferedImage, method, mode, width, height, ops);
}