--- old/src/java.desktop/share/classes/java/awt/image/Kernel.java 2018-10-01 09:59:38.818026000 +0700 +++ new/src/java.desktop/share/classes/java/awt/image/Kernel.java 2018-10-01 09:59:38.294026000 +0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -41,7 +41,7 @@ private int height; private int xOrigin; private int yOrigin; - private float data[]; + private float[] data; private static native void initIDs(); static { @@ -63,7 +63,7 @@ * is less than the product of {@code width} and * {@code height} */ - public Kernel(int width, int height, float data[]) { + public Kernel(int width, int height, float[] data) { this.width = width; this.height = height; this.xOrigin = (width-1)>>1;