Ray Milkey
Committed by Gerrit Code Review

Fix Jersey warning for redundant "@Path("/")

Change-Id: I4b1af699c90e07811e046335ff2896ec402959b6
......@@ -111,7 +111,6 @@ public class ApiDocResource extends AbstractInjectionResource {
* @throws URISyntaxException if unable to create redirect URI
*/
@GET
@Path("/")
public Response getDefault() throws IOException, URISyntaxException {
return uriInfo.getPath().endsWith("/") ? getIndex() :
temporaryRedirect(new URI(uriInfo.getPath() + "/")).build();
......