From 230c71eae79c2392196aaf665f67ca8f1641ed4c Mon Sep 17 00:00:00 2001 From: Glen Stampoultzis Date: Sat, 28 Jun 2003 05:52:14 +0000 Subject: [PATCH] Removed some unused stuff from our good friend the unknown record. Also fixed a little bug that probably wasn't effecting anyone. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/branches/REL_2_BRANCH@353173 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/poi/hssf/record/UnknownRecord.java | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/java/org/apache/poi/hssf/record/UnknownRecord.java b/src/java/org/apache/poi/hssf/record/UnknownRecord.java index 36b059549..b88d22f45 100644 --- a/src/java/org/apache/poi/hssf/record/UnknownRecord.java +++ b/src/java/org/apache/poi/hssf/record/UnknownRecord.java @@ -65,16 +65,14 @@ import org.apache.poi.util.LittleEndian; * Company: SuperLink Software, Inc.

* @author Andrew C. Oliver (acoliver at apache dot org) * @author Jason Height (jheight at chariot dot net dot au) - * @version 2.0-pre + * @author Glen Stampoultzis (glens at apache.org) */ public class UnknownRecord extends Record { - private short sid = 0; - private short size = 0; - private byte[] thedata = null; - int offset = 0; + private short sid = 0; + private byte[] thedata = null; public UnknownRecord() { @@ -91,7 +89,6 @@ public class UnknownRecord public UnknownRecord(short id, short size, byte [] data) { sid = id; - size = size; thedata = data; } @@ -127,7 +124,7 @@ public class UnknownRecord protected void fillFields(byte [] data, short sid) { - sid = sid; + this.sid = sid; thedata = data; } @@ -179,9 +176,7 @@ public class UnknownRecord /** Unlike the other Record.clone methods this is a shallow clone*/ public Object clone() { UnknownRecord rec = new UnknownRecord(); - rec.offset = offset; rec.sid = sid; - rec.size = size; rec.thedata = thedata; return rec; }