--- /home/cpdev/src/classpath/java/awt/image/SampleModel.java	2005-07-02 21:03:26.000000000 +0000
+++ java/awt/image/SampleModel.java	2005-06-30 05:34:33.000000000 +0000
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000, 2001, 2002, 2005  Free Software Foundation
+/* Copyright (C) 2000, 2001, 2002  Free Software Foundation
 
 This file is part of GNU Classpath.
 
@@ -236,7 +236,7 @@
       {
 	for (int xx=x; xx<(x+w); xx++)
 	  {
-	    pixel = getPixel(xx, yy, pixel, data);
+	    getPixel(xx, yy, pixel, data);
 	    System.arraycopy(pixel, 0, iArray, outOffset, numBands);
 	    outOffset += numBands;
 	  }
@@ -257,7 +257,7 @@
       {
 	for (int xx=x; xx<(x+w); xx++)
 	  {
-	    pixel = getPixel(xx, yy, pixel, data);
+	    getPixel(xx, yy, pixel, data);
 	    System.arraycopy(pixel, 0, fArray, outOffset, numBands);
 	    outOffset += numBands;
 	  }
@@ -278,7 +278,7 @@
       {
 	for (int xx=x; xx<(x+w); xx++)
 	  {
-	    pixel = getPixel(xx, yy, pixel, data);
+	    getPixel(xx, yy, pixel, data);
 	    System.arraycopy(pixel, 0, dArray, outOffset, numBands);
 	    outOffset += numBands;
 	  }
