Skip to content

Commit

Permalink
Revert "keep dynamic attributes order"
Browse files Browse the repository at this point in the history
This reverts commit 8a46e93
  • Loading branch information
yasserzamani committed Jan 19, 2022
1 parent bb6c186 commit e7834d4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.DynamicAttributes;
import java.util.LinkedHashMap;
import java.util.HashMap;
import java.util.Map;

/**
Expand Down Expand Up @@ -79,7 +79,7 @@ public abstract class AbstractUITag extends ComponentTagSupport implements Dynam
protected String tooltipIconPath;

// dynamic attributes.
protected Map<String, String> dynamicAttributes = new LinkedHashMap<>();
protected Map<String, String> dynamicAttributes = new HashMap<>();

protected void populateParams() {
super.populateParams();
Expand Down

0 comments on commit e7834d4

Please sign in to comment.