XBMDecoder.java: Fixed modifier order.

2005-04-20  Michael Koch  <konqueror@gmx.de>

	* gnu/java/awt/image/XBMDecoder.java:
	Fixed modifier order.

From-SVN: r98440
This commit is contained in:
Michael Koch 2005-04-20 05:50:45 +00:00 committed by Michael Koch
parent 9257bcc8fa
commit 57d1e8b0e8
2 changed files with 6 additions and 1 deletions

View file

@ -121,7 +121,7 @@ public class XBMDecoder extends ImageDecoder
}
}
static public int[] getScanline (Reader in, int len) throws IOException
public static int[] getScanline (Reader in, int len) throws IOException
{
char byteStr[] = new char[2];
int scanline[] = new int[len];