Skip to content

Commit

Permalink
removed the code that was clearing the HttpServletRequest's parameter…
Browse files Browse the repository at this point in the history
…Map which may not work on certain containers which return an immutable map and could cause an java.lang.UnsupportedOperationException
  • Loading branch information
graemerocher committed Oct 1, 2010
1 parent ebd12dd commit efecebc
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ class ForwardMethod {
}

String forward(HttpServletRequest request, HttpServletResponse response, Map params) {
def paramMap = request.parameterMap
if (paramMap) {
paramMap.clear()
}

def urlInfo = new ForwardUrlMappingInfo()

GrailsWebRequest webRequest = GrailsWebRequest.lookup(request)
Expand Down

0 comments on commit efecebc

Please sign in to comment.