--- old/src/java.desktop/share/classes/sun/java2d/pipe/RenderingEngine.java 2018-10-01 10:04:03.038026000 +0700 +++ new/src/java.desktop/share/classes/sun/java2d/pipe/RenderingEngine.java 2018-10-01 10:04:02.610026000 +0700 @@ -180,7 +180,7 @@ int caps, int join, float miterlimit, - float dashes[], + float[] dashes, float dashphase); /** @@ -271,7 +271,7 @@ BasicStroke bs, boolean thin, boolean normalize, - int bbox[]); + int[] bbox); /** * Construct an antialiased tile generator for the given parallelogram @@ -337,7 +337,7 @@ double dx2, double dy2, double lw1, double lw2, Region clip, - int bbox[]); + int[] bbox); /** * Returns the minimum pen width that the antialiasing rasterizer @@ -353,7 +353,7 @@ * feeding the consumer a segment at a time. */ public static void feedConsumer(PathIterator pi, PathConsumer2D consumer) { - float coords[] = new float[6]; + float[] coords = new float[6]; while (!pi.isDone()) { switch (pi.currentSegment(coords)) { case PathIterator.SEG_MOVETO: @@ -393,7 +393,7 @@ int caps, int join, float miterlimit, - float dashes[], + float[] dashes, float dashphase) { System.out.println(name+".createStrokedShape("+ @@ -439,7 +439,7 @@ BasicStroke bs, boolean thin, boolean normalize, - int bbox[]) + int[] bbox) { System.out.println(name+".getAATileGenerator("+ s.getClass().getName()+", "+ @@ -457,7 +457,7 @@ double dx2, double dy2, double lw1, double lw2, Region clip, - int bbox[]) + int[] bbox) { System.out.println(name+".getAATileGenerator("+ x+", "+y+", "+