[kaffe] CVS kaffe (robilad): Resynced with GNU classpath: fixed HTML in javadocs in java.awt.image

Kaffe CVS cvs-commits at kaffe.org
Fri Oct 15 06:34:27 PDT 2004


PatchSet 5294 
Date: 2004/10/15 13:28:13
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU classpath: fixed HTML in javadocs in java.awt.image

2004-10-15  Dalibor Topic <robilad at kaffe.org>

        * libraries/javalib/java/awt/image/ByteLookupTable.java,
        libraries/javalib/java/awt/image/ShortLookupTable.java:
        Resynced with GNU Classpath.

        2004-10-13  Michael Koch  <konqueror at gmx.de>

        * java/awt/image/ByteLookupTable.java
        (ByteLookupTable) :Fixed HTML entities in javadocs.
        (lookupPixel): Fix case when dst is null.
        * java/awt/image/ShortLookupTable.java
        (ShortLookupTable) :Fixed HTML entities in javadocs.
        (lookupPixel): Fix case when dst is null.

Members: 
	ChangeLog:1.2846->1.2847 
	libraries/javalib/java/awt/image/ByteLookupTable.java:1.1->1.2 
	libraries/javalib/java/awt/image/ShortLookupTable.java:1.1->1.2 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.2846 kaffe/ChangeLog:1.2847
--- kaffe/ChangeLog:1.2846	Fri Oct 15 10:41:39 2004
+++ kaffe/ChangeLog	Fri Oct 15 13:28:13 2004
@@ -1,5 +1,20 @@
 2004-10-15  Dalibor Topic <robilad at kaffe.org>
 
+	* libraries/javalib/java/awt/image/ByteLookupTable.java,
+	libraries/javalib/java/awt/image/ShortLookupTable.java:
+	Resynced with GNU Classpath.
+
+	2004-10-13  Michael Koch  <konqueror at gmx.de>
+
+        * java/awt/image/ByteLookupTable.java
+        (ByteLookupTable) :Fixed HTML entities in javadocs.
+        (lookupPixel): Fix case when dst is null.
+        * java/awt/image/ShortLookupTable.java
+        (ShortLookupTable) :Fixed HTML entities in javadocs.
+        (lookupPixel): Fix case when dst is null.
+
+2004-10-15  Dalibor Topic <robilad at kaffe.org>
+
 	* libraries/javalib/gnu/java/awt/BitwiseXORComposite.java,
 	libraries/javalib/gnu/java/awt/ClasspathToolkit.java,
 	libraries/javalib/gnu/java/awt/image/XBMDecoder.java,
Index: kaffe/libraries/javalib/java/awt/image/ByteLookupTable.java
diff -u kaffe/libraries/javalib/java/awt/image/ByteLookupTable.java:1.1 kaffe/libraries/javalib/java/awt/image/ByteLookupTable.java:1.2
--- kaffe/libraries/javalib/java/awt/image/ByteLookupTable.java:1.1	Sun Jul 25 07:50:01 2004
+++ kaffe/libraries/javalib/java/awt/image/ByteLookupTable.java	Fri Oct 15 13:28:17 2004
@@ -61,7 +61,7 @@
    * 
    * @param offset Offset to be subtracted.
    * @param data Array of lookup tables.
-   * @exception IllegalArgumentException if offset < 0 or data.length < 1.
+   * @exception IllegalArgumentException if offset &lt; 0 or data.length &lt; 1.
    */
   public ByteLookupTable(int offset, byte[][] data)
     throws IllegalArgumentException
@@ -78,7 +78,7 @@
    * 
    * @param offset Offset to be subtracted.
    * @param data Lookup table for all components.
-   * @exception IllegalArgumentException if offset < 0.
+   * @exception IllegalArgumentException if offset &lt; 0.
    */
   public ByteLookupTable(int offset, byte[] data)
     throws IllegalArgumentException
@@ -114,7 +114,7 @@
     throws ArrayIndexOutOfBoundsException
   {
     if (dst == null)
-      dst = new int[numComponents];
+      dst = new int[src.length];
 
     if (data.length == 1)
       for (int i=0; i < src.length; i++)
@@ -147,7 +147,7 @@
     throws ArrayIndexOutOfBoundsException
   {
     if (dst == null)
-      dst = new byte[numComponents];
+      dst = new byte[src.length];
 
     if (data.length == 1)
       for (int i=0; i < src.length; i++)
Index: kaffe/libraries/javalib/java/awt/image/ShortLookupTable.java
diff -u kaffe/libraries/javalib/java/awt/image/ShortLookupTable.java:1.1 kaffe/libraries/javalib/java/awt/image/ShortLookupTable.java:1.2
--- kaffe/libraries/javalib/java/awt/image/ShortLookupTable.java:1.1	Sun Jul 25 07:50:01 2004
+++ kaffe/libraries/javalib/java/awt/image/ShortLookupTable.java	Fri Oct 15 13:28:17 2004
@@ -61,7 +61,7 @@
    * 
    * @param offset Offset to be subtracted.
    * @param data Array of lookup tables.
-   * @exception IllegalArgumentException if offset < 0 or data.length < 1.
+   * @exception IllegalArgumentException if offset &lt; 0 or data.length &lt; 1.
    */
   public ShortLookupTable(int offset, short[][] data)
     throws IllegalArgumentException
@@ -78,7 +78,7 @@
    * 
    * @param offset Offset to be subtracted.
    * @param data Lookup table for all components.
-   * @exception IllegalArgumentException if offset < 0.
+   * @exception IllegalArgumentException if offset &lt; 0.
    */
   public ShortLookupTable(int offset, short[] data)
     throws IllegalArgumentException
@@ -114,7 +114,7 @@
     throws ArrayIndexOutOfBoundsException
   {
     if (dst == null)
-      dst = new int[numComponents];
+      dst = new int[src.length];
 
     if (data.length == 1)
       for (int i=0; i < src.length; i++)
@@ -147,7 +147,7 @@
     throws ArrayIndexOutOfBoundsException
   {
     if (dst == null)
-      dst = new short[numComponents];
+      dst = new short[src.length];
 
     if (data.length == 1)
       for (int i=0; i < src.length; i++)




More information about the kaffe mailing list