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>) * <p>Returns the stream's links dirty information <strong>when
* <strong>when this method is implemented. Please note that the * this method is implemented.</strong>
* return type is likely to change!</strong>
*/ */
public byte[] getLinksDirty() public boolean getLinksDirty()
{ {
if (true) if (true)
throw new UnsupportedOperationException("FIXME"); throw new UnsupportedOperationException("FIXME");
return (byte[]) getProperty(PropertyIDMap.PID_LINKSDIRTY); // return (byte[]) getProperty(PropertyIDMap.PID_LINKSDIRTY);
return false;
} }
} }