]> source.dussan.org Git - poi.git/commitdiff
Return type of getScale() fixed.
authorRainer Klute <klute@apache.org>
Thu, 2 May 2002 16:03:41 +0000 (16:03 +0000)
committerRainer Klute <klute@apache.org>
Thu, 2 May 2002 16:03:41 +0000 (16:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352585 13f79535-47bb-0310-9956-ffa450edef68

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

index 61c3ff04a94cb15c71b6fb82e2a499738681a7e5..a950c0db8db8e7e939d0fcb58ef089fd72c57912 100644 (file)
@@ -195,11 +195,12 @@ public class DocumentSummaryInformation extends SpecialPropertySet
      * <strong>when this method is implemented. Please note that the
      * return type is likely to change!</strong>
      */
-    public byte[] getScale()
+    public boolean getScale()
     {
         if (true)
             throw new UnsupportedOperationException("FIXME");
-        return (byte[]) getProperty(PropertyIDMap.PID_SCALE);
+       // return (byte[]) getProperty(PropertyIDMap.PID_SCALE);
+       return false;
     }