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 39ef690c1e
commit 3f48f62365
1 changed files with 3 additions and 2 deletions

View 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;
}