--- old/src/java.desktop/share/classes/sun/java2d/pipe/BufferedContext.java 2018-10-01 10:03:40.878026000 +0700 +++ new/src/java.desktop/share/classes/sun/java2d/pipe/BufferedContext.java 2018-10-01 10:03:40.406026000 +0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 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 @@ -357,7 +357,7 @@ buf.putInt(0); int spanCount = 0; int remainingSpans = buf.remaining() / BYTES_PER_SPAN; - int span[] = new int[4]; + int[] span = new int[4]; SpanIterator si = clip.getSpanIterator(); while (si.nextSpan(span)) { if (remainingSpans == 0) {