mirror of https://github.com/apache/poi.git
#github-143 - MAPIType.isFixedLength: not true in case of length > 8
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1857708 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
27399cec83
commit
103b011b4a
|
@ -119,7 +119,7 @@ public final class Types {
|
|||
* Is this type a fixed-length type, or a variable-length one?
|
||||
*/
|
||||
public boolean isFixedLength() {
|
||||
return (length != -1);
|
||||
return (length != -1) && (length <= 8);
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
|
|
Loading…
Reference in New Issue