mirror of https://github.com/apache/poi.git
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:
parent
39ef690c1e
commit
3f48f62365
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue