160161162163164165166
/** * Return a 200 OK text/html response * @param html The response content */ protected static void renderHtml(Object html) { throw new RenderHtml(html == null ? "" : html.toString()); }
161162163164165166167
162163164165166167168
169170171172173174175
* Return a 200 OK text/html response * * @param html The response content */ protected static void renderHtml(Object html) { throw new RenderHtml(html == null ? "" : html.toString()); }