Skip to content

Commit

Permalink
Update ClownfishWebdavServlet.java
Browse files Browse the repository at this point in the history
cleanup
  • Loading branch information
rawdog71 committed Oct 6, 2021
1 parent 69ae974 commit 9b2fa6d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ protected void service(final HttpServletRequest req, final HttpServletResponse r
// and doesn't add any special path protection
// WebdavServlet remounts the webapp under a new path, so this check is
// necessary on all methods (including GET).

/*
if (isSpecialPath(path)) {
resp.sendError(WebdavStatus.SC_NOT_FOUND);
Expand Down Expand Up @@ -249,7 +249,7 @@ protected void service(final HttpServletRequest req, final HttpServletResponse r
break;
case METHOD_PUT:
doPut(req, resp);
break;
break;
case METHOD_LOCK:
doLock(req, resp);
break;
Expand All @@ -258,7 +258,7 @@ protected void service(final HttpServletRequest req, final HttpServletResponse r
break;
case METHOD_OPTIONS:
doOptions(req, resp);
break;
break;
default:
// DefaultServlet processing
super.service(req, resp);
Expand Down

0 comments on commit 9b2fa6d

Please sign in to comment.