]> source.dussan.org Git - poi.git/commitdiff
Removed some unused stuff from our good friend the unknown record. Also fixed a...
authorGlen Stampoultzis <glens@apache.org>
Sat, 28 Jun 2003 05:52:14 +0000 (05:52 +0000)
committerGlen Stampoultzis <glens@apache.org>
Sat, 28 Jun 2003 05:52:14 +0000 (05:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/branches/REL_2_BRANCH@353173 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/record/UnknownRecord.java

index 36b05954986054b2aa0a6bf57903431a09e20cf3..b88d22f4554ba9b8d2fda5e9f9b6fd16b53a8a0a 100644 (file)
@@ -65,16 +65,14 @@ import org.apache.poi.util.LittleEndian;
  * Company:      SuperLink Software, Inc.<P>
  * @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;
     }