--- old/src/java.desktop/share/classes/sun/java2d/pipe/RegionSpanIterator.java 2018-10-01 10:04:01.366026000 +0700 +++ new/src/java.desktop/share/classes/sun/java2d/pipe/RegionSpanIterator.java 2018-10-01 10:04:00.878026000 +0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -77,7 +77,7 @@ /** * Gets the bbox of the available region spans. */ - public void getPathBox(int pathbox[]) { + public void getPathBox(int[] pathbox) { pathbox[0] = lox; pathbox[1] = loy; pathbox[2] = hix; @@ -108,7 +108,7 @@ * Fetches the next span that needs to be operated on. * If the return value is false then there are no more spans. */ - public boolean nextSpan(int spanbox[]) { + public boolean nextSpan(int[] spanbox) { // Quick test for end conditions if (done) {