| Summary: | False warning from Facesconfig validator for ViewDeclarationLanguageFactory | ||
|---|---|---|---|
| Product: | [WebTools] Java Server Faces | Reporter: | Xiaonan Jiang <xiaonan_jiang> |
| Component: | JSF Tools | Assignee: | Gerry Kessler <gerry.kessler> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | raghunathan.srinivasan, yurykats |
| Version: | unspecified | ||
| Target Milestone: | 3.2.3 | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
Checked into HEAD 10/25/10 |
Build Identifier: wtp 3.2 The following method in FactoryValidatorVisitor.java is wrong: protected String getInstanceOf() { return "javax.faces.faces.ViewDeclarationLanguageFactory"; //$NON-NLS-1$ } Should be the following instead: return "javax.faces.ViewDeclarationLanguageFactory"; //$NON-NLS-1$ This causes a false warning when validating a ViewDeclarationLanguageFactory. Reproducible: Always