Description of problem: There are duplicated messages in JSF susbsystem in EAP which has the same ids. At the moment they also have the same content. But at general, there should not be any duplicated messages. This bug is a part of WFLY-1631.
Tomaz Cerar <tomaz.cerar> made a comment on jira WFLY-1631 Ok, I will talk to Stuart as it will be me that will probably be fixing undertow subsystem.
Situation in EAP 6.3.0 ER1 is the same as Ivo said in Description. Here is the list of duplicated IDs: jboss-eap-6.3-src/jsf/injection/src/main/java/org/jboss/as/jsf/JSFLogger.java Id = 12600 is used 2 times Id = 12601 is used 2 times Id = 12602 is used 2 times Id = 12603 is used 2 times jboss-eap-6.3-src/jsf/injection/src/main/java/org/jboss/as/jsf/JSFMessages.java Id = 12650 is used 2 times Id = 12651 is used 2 times Id = 12652 is used 2 times Id = 12653 is used 2 times Id = 12654 is used 2 times Id = 12655 is used 2 times
Still present in 6.3.0.ER10. There's 9 duplications (12600-12602, 12650-12655) and just one minor collision: jsf/subsystem/src/main/java/org/jboss/as/jsf/JSFLogger.java: @Message(id = 12603, value = "Unknown JSF version '%s'. Default version '%s' will be used instead.") jsf/injection/src/main/java/org/jboss/as/jsf/JSFLogger.java: @Message(id = 12603, value = "Unknown JSF version %s %s will be used instead") IMHO, duplications are not too big a problem, given that messages don't get changed once they are given an ID. The collision should be resolved, though.
Verified with EAP 6.4.0.DR11.