|
From: xanaot <xa...@us...> - 2007-09-26 20:06:21
|
Update of /cvsroot/tail/Tail/src/java/net/sf/tail/report/xls In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv27814/src/java/net/sf/tail/report/xls Modified Files: CompleteXlsGenerator.java Log Message: tirando hardcoded do nome do report dentro do metodo generate. Index: CompleteXlsGenerator.java =================================================================== RCS file: /cvsroot/tail/Tail/src/java/net/sf/tail/report/xls/CompleteXlsGenerator.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** CompleteXlsGenerator.java 26 Sep 2007 18:25:47 -0000 1.8 --- CompleteXlsGenerator.java 26 Sep 2007 20:06:13 -0000 1.9 *************** *** 37,41 **** ! FileOutputStream fileOut = new FileOutputStream("report.xls"); workbook.write(fileOut); fileOut.close(); --- 37,41 ---- ! FileOutputStream fileOut = new FileOutputStream(report.getName()); workbook.write(fileOut); fileOut.close(); |