BinaryTagData seems to contain records, but it isn't tagged as doing so. Try stepping in anyway

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@371892 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2006-01-24 11:10:49 +00:00
parent a81ec9f00f
commit c7b02dda46

View File

@ -238,6 +238,12 @@ public void walkTree(int depth, int startPos, int maxLen) {
// Now check if it's a container or not
int container = (int)opt & 0x0f;
// BinaryTagData seems to contain records, but it
// isn't tagged as doing so. Try stepping in anyway
if(type == 5003L && opt == 0L) {
container = 0x0f;
}
if(type == 0L || (container != 0x0f)) {
System.out.println();
} else if (type == 1035l || type == 1036l) {