]> source.dussan.org Git - poi.git/commitdiff
Correct return type for getLinksDirty() - but it is still unimplemented.
authorRainer Klute <klute@apache.org>
Thu, 2 May 2002 08:11:10 +0000 (08:11 +0000)
committerRainer Klute <klute@apache.org>
Thu, 2 May 2002 08:11:10 +0000 (08:11 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352582 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java

index 8c3576ac791a30003f50f0569e377221261d50f3..61c3ff04a94cb15c71b6fb82e2a499738681a7e5 100644 (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;
     }
 
 }