From: erickson Date: Mon, 18 May 2009 13:50:13 +0000 (+0000) Subject: no need to wrap each method description in an object container with class 'method' X-Git-Tag: osrf_rel_2_0_1~377 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ae0e323c0799d96fd49a2e3317bcaed919a8e77e;p=OpenSRF.git no need to wrap each method description in an object container with class 'method' git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1702 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/libopensrf/osrf_application.c b/src/libopensrf/osrf_application.c index d8d1a18..b4dde46 100644 --- a/src/libopensrf/osrf_application.c +++ b/src/libopensrf/osrf_application.c @@ -404,8 +404,6 @@ static void _osrfAppSetIntrospectMethod( osrfMethodContext* ctx, const osrfMetho jsonNewNumberObject( (method->options & OSRF_METHOD_ATOMIC) ? 1 : 0 )); jsonObjectSetKey(resp, "cachable", jsonNewNumberObject( (method->options & OSRF_METHOD_CACHABLE) ? 1 : 0 )); - - jsonObjectSetClass(resp, "method"); } /**