From: Laramie Crocker Date: Mon, 6 Dec 2010 23:42:44 +0000 (+0000) Subject: CSPACE-3175 moved deprecated and not-used methods out -- getObjectexitList(Map,String... X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=2a9d3b70e5a661e59defd98b38ce1334b4fb0988;p=tmp%2Fjakarta-migration.git CSPACE-3175 moved deprecated and not-used methods out -- getObjectexitList(Map,String) and getObjectexitList(List) were not called anywhere, and search(MultivaluedMap queryParams,String keywords) was only calling super. --- diff --git a/services/objectexit/service/src/main/java/org/collectionspace/services/objectexit/ObjectExitResource.java b/services/objectexit/service/src/main/java/org/collectionspace/services/objectexit/ObjectExitResource.java index b30910b6a..e80196442 100644 --- a/services/objectexit/service/src/main/java/org/collectionspace/services/objectexit/ObjectExitResource.java +++ b/services/objectexit/service/src/main/java/org/collectionspace/services/objectexit/ObjectExitResource.java @@ -43,8 +43,6 @@ public class ObjectExitResource extends ResourceBase { return "objectexit"; }; - //FIXME retrieve client type from configuration - final static ClientType CLIENT_TYPE = ServiceMain.getInstance().getClientType(); @Override protected String getVersionString() { @@ -56,7 +54,7 @@ public class ObjectExitResource extends ResourceBase { public Class getCommonPartClass() { return ObjectexitCommon.class; } - + /* public Class getResourceClass() { return this.getClass(); } @@ -73,6 +71,8 @@ public class ObjectExitResource extends ResourceBase { protected ObjectexitCommonList search(MultivaluedMap queryParams,String keywords) { return (ObjectexitCommonList) super.search(queryParams, keywords); } + */ + }