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
This commit is contained in:
Rainer Klute 2002-05-02 08:11:10 +00:00
parent 283c1c24db
commit 54a2c116c0

View File

@ -253,15 +253,15 @@ public class DocumentSummaryInformation extends SpecialPropertySet
/**
* <p>Returns the stream's links dirty (or <code>null</code>)
* <strong>when this method is implemented. Please note that the
* return type is likely to change!</strong>
* <p>Returns the stream's links dirty information <strong>when
* this method is implemented.</strong>
*/
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;
}
}