Return type of getScale() fixed.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352585 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Klute 2002-05-02 16:03:41 +00:00
parent f4f812ecbb
commit fcd67c04e8

View File

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