From 2198265a72b95b7f187536f8c521be0cf7c6a4a4 Mon Sep 17 00:00:00 2001
From: Bryce McKinlay <bryce@waitaki.otago.ac.nz>
Date: Sat, 26 Jan 2002 08:35:34 +0000
Subject: MemoryImageSource.java (newPixels(byte[], ColorModel, int, int):
 Remove empty "if" statement to work around compiler bug.

        * java/awt/image/MemoryImageSource.java (newPixels(byte[], ColorModel,
        int, int):  Remove empty "if" statement to work around compiler bug.
        (newPixels(int[], ColorModel, int, int): Likewise.

From-SVN: r49245
---
 libjava/java/awt/image/MemoryImageSource.java | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

(limited to 'libjava/java/awt/image/MemoryImageSource.java')

diff --git a/libjava/java/awt/image/MemoryImageSource.java b/libjava/java/awt/image/MemoryImageSource.java
index fce112a..d36d000 100644
--- a/libjava/java/awt/image/MemoryImageSource.java
+++ b/libjava/java/awt/image/MemoryImageSource.java
@@ -312,10 +312,7 @@ public class MemoryImageSource implements ImageProducer
 				       int scansize)
 
     {
-	if( animated == true )
-	    {
-		//FIXME
-	    }
+      // FIXME
     }
 
     public synchronized void newPixels(int newpix[],
@@ -324,10 +321,7 @@ public class MemoryImageSource implements ImageProducer
 				       int scansize)
 
     {
-	if( animated == true )
-	    {
-		//FIXME
-	    }
+      // FIXME
     }
 
 }
-- 
cgit v1.1