Skip to content

Commit

Permalink
Missed out Bean update to implement Serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
alwin-joseph committed Mar 10, 2022
1 parent 66e5cfe commit f6fb67d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@
*/
package com.sun.ts.tests.jsf.spec.render.outputformat;

import java.io.Serializable;
import jakarta.faces.component.html.HtmlOutputFormat;

@jakarta.inject.Named("score") @jakarta.enterprise.context.SessionScoped
public class FormatterUIBean {
public class FormatterUIBean implements Serializable {

private static final long serialVersionUID = -9564143088038088087L;

private HtmlOutputFormat fscore;

Expand Down

0 comments on commit f6fb67d

Please sign in to comment.