fix: revert change that enforced "STRINGPOOL_TYPE" on StringPool

- fixes: #1876
This commit is contained in:
Connor Tumbleson 2018-08-23 17:14:38 -04:00
parent b7d33cb623
commit 3f85dfa6c9

View File

@ -41,7 +41,7 @@ public class StringBlock {
* be at the chunk type. * be at the chunk type.
*/ */
public static StringBlock read(ExtDataInput reader) throws IOException { public static StringBlock read(ExtDataInput reader) throws IOException {
reader.skipCheckInt(CHUNK_STRINGPOOL_TYPE); reader.skipCheckChunkTypeInt(CHUNK_STRINGPOOL_TYPE, CHUNK_NULL_TYPE);
int chunkSize = reader.readInt(); int chunkSize = reader.readInt();
// ResStringPool_header // ResStringPool_header