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:
Sergey Vladimirov 2011-10-22 02:01:26 +00:00
parent 54525d661f
commit f6db23f921
1 changed files with 2 additions and 1 deletions

View File

@ -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;
} }
} }