Commit 2198265a by Bryce McKinlay Committed by Bryce McKinlay

MemoryImageSource.java (newPixels(byte[], ColorModel, int, int): Remove empty…

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
parent f478b973
2002-01-25 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* 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.
2002-01-25 Per Bothner <per@bothner.com>
* verify.cc (verify_fail): Change from being a top-level function
......
......@@ -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
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment