diff --git a/src/java/org/apache/poi/poifs/property/Property.java b/src/java/org/apache/poi/poifs/property/Property.java index bccac354d..59727a358 100644 --- a/src/java/org/apache/poi/poifs/property/Property.java +++ b/src/java/org/apache/poi/poifs/property/Property.java @@ -473,7 +473,7 @@ public abstract class Property implements Child, POIFSViewable { */ public Object [] getViewableArray() { - Object[] results = new Object[ 5 ]; + Object[] results = new Object[ 6 ]; results[ 0 ] = "Name = \"" + getName() + "\""; results[ 1 ] = "Property Type = " + _property_type.get(); @@ -487,6 +487,7 @@ public abstract class Property implements Child, POIFSViewable { time <<= 32; time += _seconds_2.get() & 0x0000FFFFL; results[ 4 ] = "Time 2 = " + time; + results[ 5 ] = "Size = " + getSize(); return results; }