Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
The com.liferay.faces.bridge.context.HeadResponseWriter class simply extends javax.faces.context.ResponseWriterWrapper:
HeadResponseWriter.java
package com.liferay.faces.bridge.context; import javax.faces.context.ResponseWriterWrapper; /** * This is a marker class that indicates a type of response writer that can write to the <head>...</head> section of a * portal page. */ public abstract class HeadResponseWriter extends ResponseWriterWrapper { }
Since its utility as a marker class is only beneficial from a naming perspective, and since it doesn't add any extra methods, the class is to be removed in order to simplify the Bridge API.