Description
In org/apache/myfaces/view/facelets/compiler/CheckDuplicateIdFaceletUtils.java we currently do the following:
if (existingIds.contains (id)) {
....
}
We can increase performance by doing the following:
if (!existingIds.add (id)) {
....
}