values in vector not padded
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1187639 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
54525d661f
commit
f6db23f921
@ -54,7 +54,8 @@ class Vector
|
|||||||
for ( int i = 0; i < length; i++ )
|
for ( int i = 0; i < length; i++ )
|
||||||
{
|
{
|
||||||
TypedPropertyValue value = new TypedPropertyValue( _type, null );
|
TypedPropertyValue value = new TypedPropertyValue( _type, null );
|
||||||
offset += value.readValuePadded( data, offset );
|
// be aware: not padded here
|
||||||
|
offset += value.readValue( data, offset );
|
||||||
_values[i] = value;
|
_values[i] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user