< prev index next >

src/java.desktop/share/classes/sun/java2d/pipe/RegionSpanIterator.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * 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
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -75,11 +75,11 @@
     }
 
     /**
      * 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;
         pathbox[3] = hiy;
     }

@@ -106,11 +106,11 @@
 
     /**
      * 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) {
             return false;
         }
< prev index next >