From 303a40d5dca09ae33cd066827aca7cf6cb2abf39 Mon Sep 17 00:00:00 2001 From: jensp Date: Tue, 27 Mar 2012 12:53:49 +0000 Subject: [PATCH] =?UTF-8?q?Korrektur=20f=C3=BCr=20Publizieren=20der=20Asso?= =?UTF-8?q?ziation=20GenericPersonBundle=20<->=20GenericContactBundle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.libreccm.org/ccm/trunk@1555 8810af33-2d31-482b-a856-94f89814c4df --- .../cms/contenttypes/GenericPersonBundle.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/ccm-cms/src/com/arsdigita/cms/contenttypes/GenericPersonBundle.java b/ccm-cms/src/com/arsdigita/cms/contenttypes/GenericPersonBundle.java index b66f3eda5..d3b9591d8 100644 --- a/ccm-cms/src/com/arsdigita/cms/contenttypes/GenericPersonBundle.java +++ b/ccm-cms/src/com/arsdigita/cms/contenttypes/GenericPersonBundle.java @@ -37,24 +37,24 @@ public class GenericPersonBundle setContentType(primary.getContentType()); addInstance(primary); - super.setName(primary.getName()); + super.setName(primary.getName()); } public GenericPersonBundle(final OID oid) throws DataObjectNotFoundException { - super(oid); + super(oid); } public GenericPersonBundle(final BigDecimal id) throws DataObjectNotFoundException { - super(new OID(BASE_DATA_OBJECT_TYPE, id)); + super(new OID(BASE_DATA_OBJECT_TYPE, id)); } public GenericPersonBundle(final DataObject dobj) { - super(dobj); + super(dobj); } public GenericPersonBundle(final String type) { - super(type); + super(type); } public GenericPersonContactCollection getContacts() { @@ -119,10 +119,10 @@ public class GenericPersonBundle if (liveContact != null) { final DataObject link = add(CONTACTS, liveContact); - link.set(GenericPersonContactCollection.CONTACTS_KEY, contacts.get( - CONTACTS_KEY)); - link.set(GenericPersonContactCollection.CONTACTS_ORDER, - contacts.get(CONTACTS_ORDER)); + link.set(CONTACTS_KEY, + contacts.get(GenericPersonContactCollection.CONTACTS_KEY)); + link.set(CONTACTS_ORDER, + contacts.get(GenericPersonContactCollection.CONTACTS_ORDER)); link.save(); }