From: Richard Millet Date: Wed, 16 Jun 2010 04:45:17 +0000 (+0000) Subject: CSPACE-2152: Adding comment to line of code with unnecessary "AND ecm:isProxy = 0... X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=24f880395196d2154a9091346d4524b6f04f58a7;p=tmp%2Fjakarta-migration.git CSPACE-2152: Adding comment to line of code with unnecessary "AND ecm:isProxy = 0" clause in getContactList() method. --- diff --git a/services/person/service/src/main/java/org/collectionspace/services/person/PersonAuthorityResource.java b/services/person/service/src/main/java/org/collectionspace/services/person/PersonAuthorityResource.java index 9a1d08afb..c6a488486 100644 --- a/services/person/service/src/main/java/org/collectionspace/services/person/PersonAuthorityResource.java +++ b/services/person/service/src/main/java/org/collectionspace/services/person/PersonAuthorityResource.java @@ -960,7 +960,7 @@ public class PersonAuthorityResource extends ContactJAXBSchema.CONTACTS_COMMON + ":" + ContactJAXBSchema.IN_ITEM + "='" + itemcsid + "'" + - " AND ecm:isProxy = 0"); + " AND ecm:isProxy = 0"); //FIXME: REM - This clause is unnecessary because the getFiltered() method adds it getRepositoryClient(ctx).getFiltered(ctx, handler); contactObjectList = (ContactsCommonList) handler.getCommonPartList(); } catch (UnauthorizedException ue) {