--- old/src/java.desktop/unix/classes/sun/awt/X11/XMenuBarPeer.java 2018-10-01 10:04:56.742026000 +0700 +++ new/src/java.desktop/unix/classes/sun/awt/X11/XMenuBarPeer.java 2018-10-01 10:04:56.278026000 +0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 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 @@ -287,7 +287,7 @@ item.map(bounds, textOrigin); } } - XMenuItemPeer mappedVector[] = new XMenuItemPeer[mappedCnt]; + XMenuItemPeer[] mappedVector = new XMenuItemPeer[mappedCnt]; System.arraycopy(itemVector, 0, mappedVector, 0, mappedCnt); MappingData mappingData = new MappingData(mappedVector, BAR_SPACING_TOP + itemHeight + BAR_SPACING_BOTTOM); return mappingData;