#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:
Andreas Beeker 2019-04-17 20:18:29 +00:00
parent 27399cec83
commit 103b011b4a
1 changed files with 1 additions and 1 deletions

View File

@ -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() {