feature_23113 #4

Merged
francesco.mangiacrapa merged 58 commits from feature_23113 into master 2022-04-06 09:59:06 +02:00
1 changed files with 1 additions and 9 deletions
Showing only changes of commit cfc9ad0c49 - Show all commits

View File

@ -30,7 +30,7 @@ public class UriResolverDocs {
@GET
@Produces({ MediaType.TEXT_HTML })
@Path("/")
@Path("")
public InputStream index(@Context HttpServletRequest req) throws WebApplicationException {
logger.info(UriResolverDocs.class.getSimpleName() + " called");
@ -58,13 +58,5 @@ public class UriResolverDocs {
throw (WebApplicationException) e;
}
}
@GET
@Produces({ MediaType.TEXT_HTML })
@Path("")
public InputStream toDoc1(@Context HttpServletRequest req) throws WebApplicationException {
logger.info(UriResolverDocs.class.getSimpleName() + " toDoc1 called");
return index(req);
}
}