comparison dwt/internal/image/PngHuffmanTable.d @ 6:b903c16b6f48

Removed throws decls
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 14:10:03 +0200
parents 1a8b3cb347e0
children 5123b17c98ef
comparison
equal deleted inserted replaced
5:1a8b3cb347e0 6:b903c16b6f48
89 } 89 }
90 if (last !is 0) codeLengthInfo[last - 1].max = codes[i]; 90 if (last !is 0) codeLengthInfo[last - 1].max = codes[i];
91 } 91 }
92 } 92 }
93 93
94 int getNextValue(PngDecodingDataStream stream) throws IOException { 94 int getNextValue(PngDecodingDataStream stream) {
95 int code = stream.getNextIdatBit(); 95 int code = stream.getNextIdatBit();
96 int codelength = 0; 96 int codelength = 0;
97 97
98 // Here we are taking advantage of the fact that 1 bits are used as 98 // Here we are taking advantage of the fact that 1 bits are used as
99 // a prefix to the longer codeValues. 99 // a prefix to the longer codeValues.