Fixed double spacing
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352970 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
debd622e60
commit
fcee68ae9f
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
/* ====================================================================
|
/* ====================================================================
|
||||||
* The Apache Software License, Version 1.1
|
* The Apache Software License, Version 1.1
|
||||||
*
|
*
|
||||||
@ -57,8 +56,6 @@ package org.apache.poi.hssf.record;
|
|||||||
|
|
||||||
import org.apache.poi.util.LittleEndian;
|
import org.apache.poi.util.LittleEndian;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Title: Sup Book <P>
|
* Title: Sup Book <P>
|
||||||
* Description: A Extrenal Workbook Deciption (Sup Book)
|
* Description: A Extrenal Workbook Deciption (Sup Book)
|
||||||
@ -68,7 +65,6 @@ import java.util.ArrayList;
|
|||||||
* @author Andrew C. Oliver (acoliver@apache.org)
|
* @author Andrew C. Oliver (acoliver@apache.org)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class SupBookRecord extends Record
|
public class SupBookRecord extends Record
|
||||||
{
|
{
|
||||||
public final static short sid = 0x1AE;
|
public final static short sid = 0x1AE;
|
||||||
@ -88,7 +84,6 @@ public class SupBookRecord extends Record
|
|||||||
* @param size the size of the data area of the record
|
* @param size the size of the data area of the record
|
||||||
* @param data data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public SupBookRecord(short id, short size, byte[] data)
|
public SupBookRecord(short id, short size, byte[] data)
|
||||||
{
|
{
|
||||||
super(id, size, data);
|
super(id, size, data);
|
||||||
@ -102,7 +97,6 @@ public class SupBookRecord extends Record
|
|||||||
* @param data data of the record (should not contain sid/len)
|
* @param data data of the record (should not contain sid/len)
|
||||||
* @param offset of the record's data
|
* @param offset of the record's data
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public SupBookRecord(short id, short size, byte[] data, int offset)
|
public SupBookRecord(short id, short size, byte[] data, int offset)
|
||||||
{
|
{
|
||||||
super(id, size, data, offset);
|
super(id, size, data, offset);
|
||||||
@ -160,7 +154,6 @@ public class SupBookRecord extends Record
|
|||||||
LittleEndian.putShort(data, 4 + offset, field_1_number_of_sheets);
|
LittleEndian.putShort(data, 4 + offset, field_1_number_of_sheets);
|
||||||
LittleEndian.putShort(data, 6 + offset, field_2_flag);
|
LittleEndian.putShort(data, 6 + offset, field_2_flag);
|
||||||
|
|
||||||
|
|
||||||
return getRecordSize();
|
return getRecordSize();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -190,3 +183,4 @@ public class SupBookRecord extends Record
|
|||||||
return this.sid;
|
return this.sid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user