FileLfsServlet: Make sendError protected

Change-Id: Id89b3cd0da86a535946feb15254737bbf8d855d4
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2016-11-09 11:30:15 +09:00
parent dfa6895687
commit f5a40c26ac
1 changed files with 13 additions and 1 deletions

View File

@ -173,7 +173,19 @@ static class Error {
}
}
static void sendError(HttpServletResponse rsp, int status, String message)
/**
* Send an error response.
*
* @param rsp
* the servlet response
* @param status
* HTTP status code
* @param message
* error message
* @throws IOException
* on failure to send the response
*/
protected static void sendError(HttpServletResponse rsp, int status, String message)
throws IOException {
rsp.setStatus(status);
PrintWriter writer = rsp.getWriter();