Skip to content

Commit

Permalink
Revert a commit made prior to the import to Eclipse
Browse files Browse the repository at this point in the history
Reverts this commit:
javaee/uel-ri@e0390e9
The change is being reverted because:
- the problem statement in the bug report that led to the change (#37)
  is incorrect
- this was an undocumented functional change made between Java EE 8 and
  Jakarta EE 8

Signed-off-by: Mark Thomas <markt@apache.org>
  • Loading branch information
markt-asf committed Feb 26, 2020
1 parent b065527 commit 62d688b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/main/java/jakarta/el/StandardELContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ public Object getContext(Class<?> key) {
public ELResolver getELResolver() {
if (elResolver == null) {
CompositeELResolver resolver = new CompositeELResolver();
resolver.add(new BeanNameELResolver(new LocalBeanNameResolver()));
customResolvers = new CompositeELResolver();
resolver.add(customResolvers);
resolver.add(new BeanNameELResolver(new LocalBeanNameResolver()));
if (streamELResolver != null) {
resolver.add(streamELResolver);
}
Expand Down

0 comments on commit 62d688b

Please sign in to comment.