Skip to content

Commit

Permalink
Changed HashMap to LinkedHashMap #167
Browse files Browse the repository at this point in the history
  • Loading branch information
btkatoutkm committed Oct 27, 2014
1 parent 58ec6fd commit 5a6d1f2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

Expand Down Expand Up @@ -113,7 +113,7 @@ public String processFormFieldValue(HttpServletRequest request,
*/
@Override
public Map<String, String> getExtraHiddenFields(HttpServletRequest request) {
Map<String, String> result = new HashMap<String, String>();
Map<String, String> result = new LinkedHashMap<String, String>();
for (RequestDataValueProcessor processor : reversedProcessors) {
Map<String, String> map = processor.getExtraHiddenFields(request);
if (map != null) {
Expand Down

0 comments on commit 5a6d1f2

Please sign in to comment.