Skip to content

Commit

Permalink
remove unnecessary fcr:describe
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeer committed May 2, 2013
1 parent 92f9f7e commit 0caee14
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -121,7 +121,7 @@ protected int getStatus(final HttpUriRequest method)

protected ObjectProfile getObject(final String pid)
throws ClientProtocolException, IOException, JAXBException {
final HttpGet get = new HttpGet(serverAddress + "objects/" + pid + "/fcr:describe");
final HttpGet get = new HttpGet(serverAddress + "objects/" + pid);
final HttpResponse resp = execute(get);
final Unmarshaller um = context.createUnmarshaller();
return (ObjectProfile) um.unmarshal(resp.getEntity().getContent());
Expand Down

0 comments on commit 0caee14

Please sign in to comment.