Trying to remove uneeded classes

This commit is contained in:
Luca Frosini 2022-09-26 10:59:51 +02:00
parent 6b5c3fb267
commit 9ac2b4c3ec
2 changed files with 4 additions and 4 deletions

View File

@ -17,13 +17,13 @@ import org.slf4j.LoggerFactory;
/** /**
* @author Luca Frosini (ISTI-CNR) * @author Luca Frosini (ISTI-CNR)
*/ */
@Path("api-docs") //@Path("api-docs")
public class ApiDocs { public class ApiDocs {
private static Logger logger = LoggerFactory.getLogger(ApiDocs.class); private static Logger logger = LoggerFactory.getLogger(ApiDocs.class);
@GET @GET
@Path("{any: .*}") // @Path("{any: .*}")
public InputStream toDoc(@Context HttpServletRequest req) throws WebApplicationException { public InputStream toDoc(@Context HttpServletRequest req) throws WebApplicationException {
logger.trace("Called method to redirect to api-docs/index.html"); logger.trace("Called method to redirect to api-docs/index.html");

View File

@ -17,7 +17,7 @@ import org.slf4j.LoggerFactory;
/** /**
* @author Luca Frosini (ISTI-CNR) * @author Luca Frosini (ISTI-CNR)
*/ */
@Path("docs") //@Path("docs")
public class Docs { public class Docs {
private static Logger logger = LoggerFactory.getLogger(Docs.class); private static Logger logger = LoggerFactory.getLogger(Docs.class);
@ -25,7 +25,7 @@ public class Docs {
@GET @GET
@Path("{any: .*}") // @Path("{any: .*}")
public InputStream toDoc(@Context HttpServletRequest req) throws WebApplicationException { public InputStream toDoc(@Context HttpServletRequest req) throws WebApplicationException {
logger.trace("Called method to redirect to docs/index.html"); logger.trace("Called method to redirect to docs/index.html");