RelationAttribute
Habe den Fehler endlich gefunden... Es lassen sich jetzt Contact zu Personen hinzfügen. git-svn-id: https://svn.libreccm.org/ccm/trunk@586 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
c43cdd9616
commit
8680391734
|
|
@ -16,9 +16,6 @@ import org.apache.log4j.Logger;
|
|||
*/
|
||||
public class RelationAttributeCollection extends DomainCollection {
|
||||
|
||||
public static final Logger logger =
|
||||
Logger.getLogger(
|
||||
RelationAttributeCollection.class);
|
||||
public static String ATTRIBUTE = RelationAttribute.ATTRIBUTE;
|
||||
public static String KEY = RelationAttribute.KEY;
|
||||
public static String LANGUAGE = RelationAttribute.LANGUAGE;
|
||||
|
|
@ -115,9 +112,6 @@ public class RelationAttributeCollection extends DomainCollection {
|
|||
// Get RelationAttribute in desired language
|
||||
public RelationAttribute getRelationAttribute(String key, String language) {
|
||||
|
||||
logger.debug(String.format("this.getKey() = %s", this.getKey()));
|
||||
logger.debug(String.format("this.language() = %s", this.getLanguage()));
|
||||
|
||||
// First, test the current element
|
||||
if(!this.isBeforeFirst() && key.equals(this.getKey()) && language.equals(this.getLanguage())) {
|
||||
|
||||
|
|
|
|||
|
|
@ -112,7 +112,6 @@ public class GenericPersonContactTable extends Table implements TableActionListe
|
|||
private GenericContact m_contact;
|
||||
private GenericContactTypeCollection contacttypes = new GenericContactTypeCollection();
|
||||
|
||||
|
||||
private GenericPersonTableModel(Table t, PageState ps, GenericPerson person) {
|
||||
m_table = t;
|
||||
m_contactCollection = person.getContacts();
|
||||
|
|
|
|||
Loading…
Reference in New Issue