Skip to content

Commit

Permalink
#3639 Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
sekmiller committed May 22, 2017
1 parent 7ea1abe commit aec6141
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,10 @@ public class CustomizationFilesServlet extends HttpServlet {
*/
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");


response.setContentType("text/html;charset=UTF-8");

String customFileType = request.getParameter("customFileType");

System.out.print("customFileType: " + customFileType);
String filePath = getFilePath(customFileType);
System.out.print(filePath);

Path physicalPath = Paths.get(filePath);
try {
Expand Down

0 comments on commit aec6141

Please sign in to comment.