summaryrefslogtreecommitdiff
path: root/gnu/javax/imageio
diff options
context:
space:
mode:
authorSven de Marothy <sven@physto.se>2005-09-24 22:47:51 +0000
committerSven de Marothy <sven@physto.se>2005-09-24 22:47:51 +0000
commit76c5104df2c20b84be38445d4a179abce9897314 (patch)
treeff200da2ae2b31a1153f44112623db8b135d610b /gnu/javax/imageio
parentfacbd5971c7494f863b45cad1cdd8acd1355ddd6 (diff)
downloadclasspath-76c5104df2c20b84be38445d4a179abce9897314.tar.gz
2005-09-24 Sven de Marothy <sven@physto.se>
* gnu/javax/imageio/bmp/BMPDecoder.java (BMPDecoder): Fix static field references.
Diffstat (limited to 'gnu/javax/imageio')
-rw-r--r--gnu/javax/imageio/bmp/BMPDecoder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/javax/imageio/bmp/BMPDecoder.java b/gnu/javax/imageio/bmp/BMPDecoder.java
index 379b4ffc5..c4a582bfa 100644
--- a/gnu/javax/imageio/bmp/BMPDecoder.java
+++ b/gnu/javax/imageio/bmp/BMPDecoder.java
@@ -54,7 +54,7 @@ public abstract class BMPDecoder {
public BMPDecoder(BMPFileHeader fh, BMPInfoHeader ih){
fileHeader = fh;
infoHeader = ih;
- offset = fh.SIZE + ih.SIZE;
+ offset = BMPFileHeader.SIZE + BMPInfoHeader.SIZE;
}
/**