branch feature/1207 updated (d0ce73b -> 2956d2e)
This is an automated email from the git hooks/post-receive script. New change to branch feature/1207 in repository lima. See http://git.chorem.org/lima.git from d0ce73b refs #1270 corrections d'erreurs majeures new 2956d2e refs #1270 corrections d'erreurs majeures The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 2956d2e9ea5d1041f0235d8e62811e5f3982ee92 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Mar 21 07:44:17 2015 +0100 refs #1270 corrections d'erreurs majeures Summary of changes: .../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(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/1207 in repository lima. See http://git.chorem.org/lima.git commit 2956d2e9ea5d1041f0235d8e62811e5f3982ee92 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Mar 21 07:44:17 2015 +0100 refs #1270 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>.
participants (1)
-
chorem.org scm