Fix HTML5 issues in Javadoc for Java 11

Some of these become hard errors in Java 17 or earlier, so it's best
to clean them up properly.
This commit is contained in:
Ian Young
2021-12-23 16:48:01 +00:00
committed by rstoyanchev
parent b441adecfe
commit e67a4e6f63
4 changed files with 9 additions and 9 deletions

View File

@@ -289,9 +289,9 @@ public class FlowFacesContext extends FacesContextWrapper {
/**
* Adapter class to convert a {@link FacesMessage} to a Spring {@link Message}. This adapter is required to allow
* <tt>FacesMessages</tt> to be registered with Spring whilst still retaining their mutable nature. It is not
* uncommon for <tt>FacesMessages</tt> to be changed after they have been added to a <tt>FacesContext</tt>, for
* example, from a <tt>PhaseListener</tt>.
* <code>FacesMessages</code> to be registered with Spring whilst still retaining their mutable nature. It is not
* uncommon for <code>FacesMessages</code> to be changed after they have been added to a <code>FacesContext</code>, for
* example, from a <code>PhaseListener</code>.
* <p>
* NOTE: Only {@link javax.faces.application.FacesMessage} instances are directly adapted, any subclasses will be
* converted to the standard FacesMessage implementation. This is to protect against bugs such as SWF-1073.