From fcd67c04e8ec96d0f2b0fb968ba07a6d5fcaa8eb Mon Sep 17 00:00:00 2001 From: Rainer Klute Date: Thu, 2 May 2002 16:03:41 +0000 Subject: [PATCH] Return type of getScale() fixed. 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 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java b/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java index 61c3ff04a..a950c0db8 100644 --- a/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java +++ b/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java @@ -195,11 +195,12 @@ public class DocumentSummaryInformation extends SpecialPropertySet * when this method is implemented. Please note that the * return type is likely to change! */ - 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; }