< prev index next >

src/java.desktop/share/classes/java/awt/image/ShortLookupTable.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 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

@@ -44,11 +44,11 @@
 
     /**
      * Constants
      */
 
-    short data[][];
+    short[][] data;
 
     /**
      * Constructs a ShortLookupTable object from an array of short
      * arrays representing a lookup table for each
      * band.  The offset will be subtracted from the input

@@ -58,11 +58,11 @@
      * @param offset the value subtracted from the input values
      *        before indexing into the arrays
      * @param data an array of short arrays representing a lookup
      *        table for each band
      */
-    public ShortLookupTable(int offset, short data[][]) {
+    public ShortLookupTable(int offset, short[][] data) {
         super(offset,data.length);
         numComponents = data.length;
         numEntries    = data[0].length;
         this.data = new short[numComponents][];
         // Allocate the array and copy the data reference

@@ -79,11 +79,11 @@
      * data array is stored as a reference.
      * @param offset the value subtracted from the input values
      *        before indexing into the arrays
      * @param data an array of shorts
      */
-    public ShortLookupTable(int offset, short data[]) {
+    public ShortLookupTable(int offset, short[] data) {
         super(offset,data.length);
         numComponents = 1;
         numEntries    = data.length;
         this.data     = new short[1][];
         this.data[0]  = data;
< prev index next >