diff --git a/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java b/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java index 8c3576ac7..61c3ff04a 100644 --- a/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java +++ b/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java @@ -253,15 +253,15 @@ public class DocumentSummaryInformation extends SpecialPropertySet /** - *
Returns the stream's links dirty (or null
)
- * when this method is implemented. Please note that the
- * return type is likely to change!
+ *
Returns the stream's links dirty information when + * this method is implemented. */ - public byte[] getLinksDirty() + public boolean getLinksDirty() { if (true) throw new UnsupportedOperationException("FIXME"); - return (byte[]) getProperty(PropertyIDMap.PID_LINKSDIRTY); + // return (byte[]) getProperty(PropertyIDMap.PID_LINKSDIRTY); + return false; } }