Skip to content

Commit

Permalink
Lut 26831 : simplify get response from backup
Browse files Browse the repository at this point in the history
  • Loading branch information
TimotheeHrl committed Dec 11, 2023
1 parent cff39f0 commit 599f6f3
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/java/fr/paris/lutece/plugins/forms/web/FormXPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -883,12 +883,6 @@ public synchronized XPage doSaveStep( HttpServletRequest request ) throws SiteMe
_currentStep = StepHome.findByPrimaryKey(Integer.parseInt(request.getParameter(FormsConstants.PARAMETER_ID_STEP)));
List<String> errorList = new ArrayList<>( );
_currentStep = FormsResponseUtils.getNextStep( _currentStep.getId( ), errorList, _formResponseManager );
// print all parameters
Enumeration<String> parameterNames = request.getParameterNames();
while (parameterNames.hasMoreElements()) {
String paramName = parameterNames.nextElement();
AppLogService.error("########### : " + paramName + " : " + request.getParameter(paramName));
}
return getStepView( request );
}

Expand Down

0 comments on commit 599f6f3

Please sign in to comment.