no message

This commit is contained in:
Sola
2016-03-25 05:10:14 +08:00
parent bbbe15ff9b
commit edba6c2b0e

View File

@@ -71,11 +71,11 @@ public class APIRouter extends HttpServlet {
// resp.sendError(HttpServletResponse.SC_FORBIDDEN); // resp.sendError(HttpServletResponse.SC_FORBIDDEN);
// obj = nodes; // obj = nodes;
obj = new Object[]{ obj = new Object[]{
Thread.currentThread().getContextClassLoader().getClass().toString(), Thread.currentThread().getContextClassLoader().toString(),
getServletContext().getClassLoader().getClass().toString(), getServletContext().getClassLoader().toString(),
getClass().getClassLoader().getClass().toString(), getClass().getClassLoader().toString(),
getClass().getPackage().getName(), getClass().getPackage().getName(),
API.class.getClassLoader().getClass().toString() API.class.getClassLoader().toString()
}; };
return; return;
} }