Skip to content

Commit

Permalink
ELResolver.getFeatureDescriptors() is deprecated as of EL 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Sep 9, 2021
1 parent 28c5343 commit 040d4cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,11 @@ public boolean isReadOnly(ELContext context, Object base, Object property) {
* <code>null</code> return value.
* @return An <code>Iterator</code> containing one <code>FeatureDescriptor</code> object for each implicit object,
* or <code>null</code> if <code>base</code> is not <code>null</code>.
*
* @deprecated This method is deprecated as of EL 5.0 and will be removed in EL 6.0 (Jakarta EE 11). Therefore it
* will be removed here in JSP 4.0.
*/
@Deprecated(forRemoval = true, since = "JSP 3.1")
@Override
public Iterator<FeatureDescriptor> getFeatureDescriptors(ELContext context, Object base) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,11 @@ public boolean isReadOnly(ELContext context, Object base, Object property) {
* <code>null</code> return value.
* @return An <code>Iterator</code> containing one <code>FeatureDescriptor</code> object for each scoped attribute,
* or <code>null</code> if <code>base</code> is not <code>null</code>.
*
* @deprecated This method is deprecated as of EL 5.0 and will be removed in EL 6.0 (Jakarta EE 11). Therefore it
* will be removed here in JSP 4.0.
*/
@Deprecated(forRemoval = true, since = "JSP 3.1")
@Override
public Iterator<FeatureDescriptor> getFeatureDescriptors(ELContext context, Object base) {
Enumeration<String> attrs;
Expand Down

0 comments on commit 040d4cb

Please sign in to comment.