Remove commented code

This commit is contained in:
lganzzzo 2019-10-04 01:00:32 +03:00
parent ac0747e4f8
commit 49a6c50f03
2 changed files with 0 additions and 17 deletions

View File

@ -61,14 +61,6 @@ public:
#include OATPP_CODEGEN_BEGIN(ApiController)
/*ENDPOINT_INTERCEPTOR(root, inter1) {
OATPP_LOGD("aaa", "inter1");
return (this->*prevMethod)(request);
}*/
/*ENDPOINT_INTERCEPTOR(root, inter2) {
OATPP_LOGD("aaa", "inter2");
return (this->*prevMethod)(request);
}*/
ENDPOINT("GET", "/", root) {
//OATPP_LOGV(TAG, "GET '/'");
return createResponse(Status::CODE_200, "Hello World!!!");

View File

@ -61,15 +61,6 @@ public:
#include OATPP_CODEGEN_BEGIN(ApiController)
// ENDPOINT_INTERCEPTOR_ASYNC(Root, inter1) {
// OATPP_LOGD("aaa", "inter1");
// return (this->*prevMethod)(request);
// }
// ENDPOINT_INTERCEPTOR(root, inter2) {
// OATPP_LOGD("aaa", "inter2");
// return (this->*prevMethod)(request);
// }
ENDPOINT_ASYNC("GET", "/", Root) {
ENDPOINT_ASYNC_INIT(Root)