This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository lima. See https://gitlab.nuiton.org/chorem/lima.git commit 73bc6aff801c7cfe8d3f94ebfb429fb66692038d Author: David Cossé <cosse@codelutin.com> Date: Fri Jul 8 19:19:45 2016 +0200 refs #1207 [ISO] suppression d'un appel non utilisé --- .../java/org/chorem/lima/ui/opening/OpeningViewHandler.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lima-swing/src/main/java/org/chorem/lima/ui/opening/OpeningViewHandler.java b/lima-swing/src/main/java/org/chorem/lima/ui/opening/OpeningViewHandler.java index 7f87e4f..5f634e5 100644 --- a/lima-swing/src/main/java/org/chorem/lima/ui/opening/OpeningViewHandler.java +++ b/lima-swing/src/main/java/org/chorem/lima/ui/opening/OpeningViewHandler.java @@ -82,7 +82,6 @@ public class OpeningViewHandler { } public void previous() { - ImportExport importExport = new ImportExport(view); JPanel panel = view.getPanel(); panel.removeAll(); step = step - 2; @@ -225,27 +224,27 @@ public class OpeningViewHandler { switch (defaultAccountsChartEnum) { case IMPORT_EBP: importExport.importExport(ImportExportEnum.EBP_ACCOUNTCHARTS_IMPORT, - null, defaultAccountsChartEnum.getDefaultFileURL(), false); + null, defaultAccountsChartEnum.getDefaultFileURL(), false); break; default: importExport.importExport(ImportExportEnum.CSV_ACCOUNTCHARTS_IMPORT, - null, defaultAccountsChartEnum.getDefaultFileURL(), false); + null, defaultAccountsChartEnum.getDefaultFileURL(), false); break; } //Import financialstatement switch (defaultAccountsChartEnum) { case SHORTENED: importExport.importExport(ImportExportEnum.CSV_FINANCIALSTATEMENTS_IMPORT, - null, defaultAccountsChartEnum.getDefaultFileURL(), false); + null, defaultAccountsChartEnum.getDefaultFileURL(), false); break; case DEVELOPED: importExport.importExport(ImportExportEnum.CSV_FINANCIALSTATEMENTS_IMPORT, - null, FinancialStatementsChartEnum.DEVELOPED.getDefaultFileUrl() , false); + null, FinancialStatementsChartEnum.DEVELOPED.getDefaultFileUrl() , false); break; default: importExport.importExport(ImportExportEnum.CSV_FINANCIALSTATEMENTS_IMPORT, - null, FinancialStatementsChartEnum.BASE.getDefaultFileUrl(), false); + null, FinancialStatementsChartEnum.BASE.getDefaultFileUrl(), false); break; } //Import vatstatement -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.