comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/image/LZWCodec.d @ 6:f36c67707cb3

Removed import to tango.core.Exception
author Frank Benoit <benoit@tionex.de>
date Thu, 05 Mar 2009 00:18:47 +0100
parents 6dd524f61e62
children d46287db17ed
comparison
equal deleted inserted replaced
5:daf5407a1394 6:f36c67707cb3
20 import org.eclipse.swt.graphics.ImageData; 20 import org.eclipse.swt.graphics.ImageData;
21 import org.eclipse.swt.graphics.ImageLoader; 21 import org.eclipse.swt.graphics.ImageLoader;
22 import org.eclipse.swt.graphics.ImageLoaderEvent; 22 import org.eclipse.swt.graphics.ImageLoaderEvent;
23 import java.lang.all; 23 import java.lang.all;
24 24
25 import tango.core.Exception;
26 25
27 final class LZWCodec { 26 final class LZWCodec {
28 int bitsPerPixel, blockSize, blockIndex, currentByte, bitsLeft, 27 int bitsPerPixel, blockSize, blockIndex, currentByte, bitsLeft,
29 codeSize, clearCode, endCode, newCodes, topSlot, currentSlot, 28 codeSize, clearCode, endCode, newCodes, topSlot, currentSlot,
30 imageWidth, imageHeight, imageX, imageY, pass, line, codeMask; 29 imageWidth, imageHeight, imageX, imageY, pass, line, codeMask;