diff options
Diffstat (limited to 'libjava/java/awt/image/MemoryImageSource.java')
-rw-r--r-- | libjava/java/awt/image/MemoryImageSource.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/awt/image/MemoryImageSource.java b/libjava/java/awt/image/MemoryImageSource.java index fce112a0656..0e8d4620672 100644 --- a/libjava/java/awt/image/MemoryImageSource.java +++ b/libjava/java/awt/image/MemoryImageSource.java @@ -116,7 +116,7 @@ public class MemoryImageSource implements ImageProducer Constructs an ImageProducer from memory using the default RGB ColorModel */ public MemoryImageSource(int w, int h, - byte pix[], int off, int scan) + int pix[], int off, int scan) { this ( w, h, ColorModel.getRGBdefault(), pix, off, scan, null); } |