rename blame method to getBlame

This commit is contained in:
Sebastian Sdorra
2011-09-15 13:27:39 +02:00
parent 5daade4f7b
commit 5e28499379

View File

@@ -133,7 +133,7 @@ public class RepositoryResource
setDisableCache(false);
}
//~--- methods --------------------------------------------------------------
//~--- get methods ----------------------------------------------------------
/**
* Method description
@@ -150,9 +150,9 @@ public class RepositoryResource
*/
@GET
@Path("{id}/blame")
public Response blame(@PathParam("id") String id,
@QueryParam("revision") String revision,
@QueryParam("path") String path)
public Response getBlame(@PathParam("id") String id,
@QueryParam("revision") String revision,
@QueryParam("path") String path)
throws RepositoryException, IOException
{
Response response = null;
@@ -189,8 +189,6 @@ public class RepositoryResource
return response;
}
//~--- get methods ----------------------------------------------------------
/**
* Method description
*