ASF Bugzilla – Attachment 14163 Details for
Bug 33375
[PATCH] Fix for HSSF Bug #33160
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
[PATCH] Patch file for bug 33160
mypatch.patch (text/plain), 1.11 KB, created by
Amol Deshmukh
on 2005-02-02 23:09:14 UTC
(
hide
)
Description:
[PATCH] Patch file for bug 33160
Filename:
MIME Type:
Creator:
Amol Deshmukh
Created:
2005-02-02 23:09:14 UTC
Size:
1.11 KB
patch
obsolete
>Index: src/java/org/apache/poi/hssf/model/FormulaParser.java >=================================================================== >RCS file: /home/cvspublic/jakarta-poi/src/java/org/apache/poi/hssf/model/FormulaParser.java,v >retrieving revision 1.17 >diff -u -r1.17 FormulaParser.java >--- src/java/org/apache/poi/hssf/model/FormulaParser.java 29 Apr 2004 07:16:36 -0000 1.17 >+++ src/java/org/apache/poi/hssf/model/FormulaParser.java 21 Jan 2005 16:21:26 -0000 >@@ -484,7 +484,9 @@ > if (IsDigit(look)) number = number +"."+ GetNum(); //this also takes care of someone entering "1234." > tokens.add(new NumberPtg(number)); > } else { >- tokens.add(new IntPtg(number)); //TODO:what if the number is too big to be a short? ..add factory to return Int or Number! >+ tokens.add(new NumberPtg(number)); >+ // Note: Changed from IntPtg to NumberPtg as a temporary fix. See "previous TODO" below. >+ //previous TODO:what if the number is too big to be a short? ..add factory to return Int or Number! > } > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 33375
:
14163
|
14773