--- old/src/java.desktop/share/classes/sun/java2d/loops/Blit.java 2018-10-01 10:03:20.366026000 +0700 +++ new/src/java.desktop/share/classes/sun/java2d/loops/Blit.java 2018-10-01 10:03:19.922026000 +0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2011, 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 @@ -165,7 +165,7 @@ if (clip == null) { clip = Region.getInstanceXYWH(dstx, dsty, width, height); } - int span[] = {dstx, dsty, dstx+width, dsty+height}; + int[] span = {dstx, dsty, dstx+width, dsty+height}; SpanIterator si = clip.getSpanIterator(span); srcx -= dstx; srcy -= dsty;