Skip to content

Commit

Permalink
https://github.com/jakartaee/faces/issues/1784
Browse files Browse the repository at this point in the history
FacesConfig#version() cannot return null
  • Loading branch information
BalusC committed Jan 28, 2023
1 parent 0d6ec48 commit 8b5e83b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static final class Literal extends AnnotationLiteral<FacesConfig> impleme

@Override
public Version version() {
return null; // non binding, so not used
return Version.JSF_2_3;
}
}

Expand Down

0 comments on commit 8b5e83b

Please sign in to comment.