diff options
author | Josh Micich <josh@apache.org> | 2008-05-08 23:06:30 +0000 |
---|---|---|
committer | Josh Micich <josh@apache.org> | 2008-05-08 23:06:30 +0000 |
commit | 39507eb910ced33cc7ffd9c3f47b74bfc15faf88 (patch) | |
tree | 6d17bf4ba34b2413c3b74f769cca1caa962c6c33 /src/java | |
parent | a4cfce51067541b77f65603212f0eaa5f07fbb4f (diff) | |
download | poi-39507eb910ced33cc7ffd9c3f47b74bfc15faf88.tar.gz poi-39507eb910ced33cc7ffd9c3f47b74bfc15faf88.zip |
removed unused constructor and old comment after r654649
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@654650 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/org/apache/poi/hssf/record/formula/FuncPtg.java | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/java/org/apache/poi/hssf/record/formula/FuncPtg.java b/src/java/org/apache/poi/hssf/record/formula/FuncPtg.java index 2585bd764f..364ddf5a02 100644 --- a/src/java/org/apache/poi/hssf/record/formula/FuncPtg.java +++ b/src/java/org/apache/poi/hssf/record/formula/FuncPtg.java @@ -32,18 +32,6 @@ public final class FuncPtg extends AbstractFunctionPtg { public final static int SIZE = 3; private int numParams=0; - /** - * FuncPtgs are defined to be 4 bytes but the actual FuncPtg uses only 2 bytes. - * If we have leftOvers that are read from the file we should serialize them back out. - * <p> - * If the leftovers are removed, a prompt "Warning: Data may have been lost occurs in Excel" - */ - //protected byte[] leftOvers = null; - - private FuncPtg() { - //Required for clone methods - } - /**Creates new function pointer from a byte array * usually called while reading an excel file. */ |