mirror of https://github.com/apache/poi.git
Removed some unused initializers
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353674 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d4579e9ef7
commit
9e45972bd1
|
@ -35,7 +35,6 @@ import java.util.*;
|
||||||
* @author Marc Johnson (mjohnson at apache dot org)
|
* @author Marc Johnson (mjohnson at apache dot org)
|
||||||
* @author Glen Stampoultzis (glens at apache.org)
|
* @author Glen Stampoultzis (glens at apache.org)
|
||||||
* @author Csaba Nagy (ncsaba at yahoo dot com)
|
* @author Csaba Nagy (ncsaba at yahoo dot com)
|
||||||
* @version 1.0-pre
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class RecordFactory
|
public class RecordFactory
|
||||||
|
@ -146,7 +145,7 @@ public class RecordFactory
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
short rectype = 0;
|
short rectype;
|
||||||
|
|
||||||
DrawingRecord lastDrawingRecord = new DrawingRecord( );
|
DrawingRecord lastDrawingRecord = new DrawingRecord( );
|
||||||
do
|
do
|
||||||
|
@ -225,7 +224,7 @@ public class RecordFactory
|
||||||
public static Record [] createRecord(short rectype, short size,
|
public static Record [] createRecord(short rectype, short size,
|
||||||
byte [] data)
|
byte [] data)
|
||||||
{
|
{
|
||||||
Record retval = null;
|
Record retval;
|
||||||
Record[] realretval = null;
|
Record[] realretval = null;
|
||||||
|
|
||||||
try
|
try
|
||||||
|
@ -327,8 +326,8 @@ public class RecordFactory
|
||||||
|
|
||||||
for (int i = 0; i < records.length; i++)
|
for (int i = 0; i < records.length; i++)
|
||||||
{
|
{
|
||||||
Class record = null;
|
Class record;
|
||||||
short sid = 0;
|
short sid;
|
||||||
|
|
||||||
record = records[ i ];
|
record = records[ i ];
|
||||||
try
|
try
|
||||||
|
|
Loading…
Reference in New Issue