This is an automated email from the git hooks/post-receive script. New commit to branch feature/1176 in repository lima. See http://git.chorem.org/lima.git commit a39b7a69e79b2ea27260c42ab54485c3739d9c80 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Mar 21 07:44:17 2015 +0100 refs #1207 corrections d'erreurs majeures --- .../org/chorem/lima/ui/celleditor/AutoCompleteTableCellEditor.java | 6 +++--- .../java/org/chorem/lima/ui/combobox/EntryBookComboBoxModel.java | 2 -- .../java/org/chorem/lima/ui/combobox/LeafAccountComboBoxModel.java | 2 -- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/lima-swing/src/main/java/org/chorem/lima/ui/celleditor/AutoCompleteTableCellEditor.java b/lima-swing/src/main/java/org/chorem/lima/ui/celleditor/AutoCompleteTableCellEditor.java index 0c2341d..09f7f3b 100644 --- a/lima-swing/src/main/java/org/chorem/lima/ui/celleditor/AutoCompleteTableCellEditor.java +++ b/lima-swing/src/main/java/org/chorem/lima/ui/celleditor/AutoCompleteTableCellEditor.java @@ -34,16 +34,16 @@ import java.util.Map; */ public class AutoCompleteTableCellEditor extends StringTableCellEditor { - protected static final Map<String, List<String>> precedingValuesById = Maps.newHashMap(); + protected static final Map<String, List<String>> PRECEDING_VALUES_BY_ID = Maps.newHashMap(); List<String> precedingValues; public AutoCompleteTableCellEditor(String id) { - precedingValues = precedingValuesById.get(id); + precedingValues = PRECEDING_VALUES_BY_ID.get(id); if (precedingValues == null) { precedingValues = Lists.newLinkedList(); - precedingValuesById.put(id, precedingValues); + PRECEDING_VALUES_BY_ID.put(id, precedingValues); } AutoCompleteDecorator.decorate(getComponent(), precedingValues, false); diff --git a/lima-swing/src/main/java/org/chorem/lima/ui/combobox/EntryBookComboBoxModel.java b/lima-swing/src/main/java/org/chorem/lima/ui/combobox/EntryBookComboBoxModel.java index ddc2a84..65ef4f0 100644 --- a/lima-swing/src/main/java/org/chorem/lima/ui/combobox/EntryBookComboBoxModel.java +++ b/lima-swing/src/main/java/org/chorem/lima/ui/combobox/EntryBookComboBoxModel.java @@ -22,8 +22,6 @@ package org.chorem.lima.ui.combobox; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; import org.chorem.lima.business.ServiceListener; import org.chorem.lima.business.api.EntryBookService; import org.chorem.lima.business.api.ImportService; diff --git a/lima-swing/src/main/java/org/chorem/lima/ui/combobox/LeafAccountComboBoxModel.java b/lima-swing/src/main/java/org/chorem/lima/ui/combobox/LeafAccountComboBoxModel.java index 149a76c..a8a9e55 100644 --- a/lima-swing/src/main/java/org/chorem/lima/ui/combobox/LeafAccountComboBoxModel.java +++ b/lima-swing/src/main/java/org/chorem/lima/ui/combobox/LeafAccountComboBoxModel.java @@ -22,8 +22,6 @@ package org.chorem.lima.ui.combobox; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; import org.chorem.lima.business.ServiceListener; import org.chorem.lima.business.api.AccountService; import org.chorem.lima.business.api.ImportService; -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.