Author: dcosse Date: 2014-07-30 09:41:15 +0200 (Wed, 30 Jul 2014) New Revision: 3873 Url: http://forge.chorem.org/projects/lima/repository/revisions/3873 Log: fix build Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/NewExportServiceImpl.java Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/NewExportServiceImpl.java =================================================================== --- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/NewExportServiceImpl.java 2014-07-30 07:03:24 UTC (rev 3872) +++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/NewExportServiceImpl.java 2014-07-30 07:41:15 UTC (rev 3873) @@ -224,19 +224,6 @@ return result; } - @Override - public String exportFinancialTransactionsAsCSV(String charset) { - String result; - try { - File file = exportFinancialTransactionsFile(charset); - FileInputStream inputStream = new FileInputStream(file); - result = IOUtils.toString(inputStream); - } catch (Exception e) { - throw new LimaTechnicalException(e); - } - return result; - } - protected File exportEntriesFile(String charset, Boolean humanReadable) throws Exception { EntryTopiaDao dao = getDaoHelper().getEntryDao(); List<Entry> entities = dao.findAll();