--- old/src/java.desktop/windows/classes/sun/awt/windows/WFontMetrics.java 2018-10-01 10:05:50.406026000 +0700 +++ new/src/java.desktop/windows/classes/sun/awt/windows/WFontMetrics.java 2018-10-01 10:05:49.798026000 +0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 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 @@ -43,7 +43,7 @@ /** * The widths of the first 256 characters. */ - int widths[]; + int[] widths; /** * The standard ascent of the font. This is the logical height @@ -181,13 +181,13 @@ * Return the width of the specified char[] in this Font. */ @Override - public native int charsWidth(char data[], int off, int len); + public native int charsWidth(char[] data, int off, int len); /** * Return the width of the specified byte[] in this Font. */ @Override - public native int bytesWidth(byte data[], int off, int len); + public native int bytesWidth(byte[] data, int off, int len); /** * Get the widths of the first 256 characters in the font.