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 f63c2236d8a38517f143f2c0f374982b3faec999 Author: David Cossé <cosse@codelutin.com> Date: Thu Oct 26 00:58:39 2017 +0200 refs #1394 [ISO] formatage --- .../ui/financialtransaction/FinancialTransactionViewHandler.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionViewHandler.java b/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionViewHandler.java index 04da37d7..fb53c4ee 100644 --- a/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionViewHandler.java +++ b/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionViewHandler.java @@ -316,7 +316,7 @@ public class FinancialTransactionViewHandler implements ServiceListener, TableMo * @param event event */ public void fiscalPeriodSelected(ItemEvent event) { - if ( event.getStateChange() == ItemEvent.SELECTED) { + if (event.getStateChange() == ItemEvent.SELECTED) { FiscalPeriod selectedFiscalPeriod = (FiscalPeriod) event.getItem(); List<FinancialPeriod> financialPeriods = financialPeriodService.getFinancialPeriodsWithBeginDateWithin(selectedFiscalPeriod.getBeginDate(), @@ -337,7 +337,7 @@ public class FinancialTransactionViewHandler implements ServiceListener, TableMo * @param event event */ public void financialPeriodSelected(ItemEvent event) { - if ( event.getStateChange() == ItemEvent.SELECTED) { + if (event.getStateChange() == ItemEvent.SELECTED) { updateFinancialTransactions(); computePeriodStatusText(); setAddEntryAllowed(); @@ -350,7 +350,7 @@ public class FinancialTransactionViewHandler implements ServiceListener, TableMo * @param event event */ public void entryBookSelected(ItemEvent event) { - if ( event.getStateChange() == ItemEvent.SELECTED) { + if (event.getStateChange() == ItemEvent.SELECTED) { updateFinancialTransactions(); computePeriodStatusText(); setAddEntryAllowed(); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.