diff --git a/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java b/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java index 61c3ff04a9..a950c0db8d 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; }