From: Hirzel P. <ph...@us...> - 2007-06-19 08:21:18
|
Update of /cvsroot/tcotool/TCO-Tool/src/org/tcotool/standard/report In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv32109/src/org/tcotool/standard/report Modified Files: ReportTool.java Log Message: Bug fix: #tableDataAmount() export double to CSV Index: ReportTool.java =================================================================== RCS file: /cvsroot/tcotool/TCO-Tool/src/org/tcotool/standard/report/ReportTool.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ReportTool.java 13 Jun 2007 20:17:33 -0000 1.8 --- ReportTool.java 19 Jun 2007 08:21:14 -0000 1.9 *************** *** 545,549 **** nativeContent("</td>"); ! getCsvWriter().cell(af.format(value)); } /** --- 545,549 ---- nativeContent("</td>"); ! getCsvWriter().cell(new Double(value)); } /** |