--- old/src/java.desktop/share/classes/java/awt/image/Kernel.java 2015-09-18 13:05:37.349449131 -0700 +++ new/src/java.desktop/share/classes/java/awt/image/Kernel.java 2015-09-18 13:05:37.245449135 -0700 @@ -83,7 +83,7 @@ * Returns the X origin of this Kernel. * @return the X origin. */ - final public int getXOrigin(){ + public final int getXOrigin(){ return xOrigin; } @@ -91,7 +91,7 @@ * Returns the Y origin of this Kernel. * @return the Y origin. */ - final public int getYOrigin() { + public final int getYOrigin() { return yOrigin; } @@ -99,7 +99,7 @@ * Returns the width of this Kernel. * @return the width of this Kernel. */ - final public int getWidth() { + public final int getWidth() { return width; } @@ -107,7 +107,7 @@ * Returns the height of this Kernel. * @return the height of this Kernel. */ - final public int getHeight() { + public final int getHeight() { return height; } @@ -123,7 +123,7 @@ * @throws IllegalArgumentException if data is less * than the size of this Kernel */ - final public float[] getKernelData(float[] data) { + public final float[] getKernelData(float[] data) { if (data == null) { data = new float[this.data.length]; }