From 54a2c116c040eb87280d6854fd0613412ff530e9 Mon Sep 17 00:00:00 2001 From: Rainer Klute Date: Thu, 2 May 2002 08:11:10 +0000 Subject: [PATCH] Correct return type for getLinksDirty() - but it is still unimplemented. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352582 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/poi/hpsf/DocumentSummaryInformation.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; } }