klute 02/05/02 09:03:41
Modified: src/java/org/apache/poi/hpsf DocumentSummaryInformation.java
Log:
Return type of getScale() fixed.
Revision Changes Path
1.5 +4 -3
jakarta-poi/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java
Index: DocumentSummaryInformation.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/DocumentSummaryInformation.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DocumentSummaryInformation.java 2 May 2002 08:11:10 -0000 1.4
+++ DocumentSummaryInformation.java 2 May 2002 16:03:41 -0000 1.5
@@ -65,7 +65,7 @@
* @see SummaryInformation
*
* @author Rainer Klute ([EMAIL PROTECTED])
- * @version $Id: DocumentSummaryInformation.java,v 1.4 2002/05/02 08:11:10 klute
Exp $
+ * @version $Id: DocumentSummaryInformation.java,v 1.5 2002/05/02 16:03:41 klute
Exp $
* @since 2002-02-09
*/
public class DocumentSummaryInformation extends SpecialPropertySet
@@ -195,11 +195,12 @@
* <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;
}