Skip to content

Commit

Permalink
Remove references to previously deprecated and now removed method
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Jan 11, 2024
1 parent f8209cf commit ae3aab9
Showing 1 changed file with 1 addition and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009, 2020 Oracle and/or its affiliates and others.
* Copyright (c) 2009, 2024 Oracle and/or its affiliates and others.
* All rights reserved.
*
* This program and the accompanying materials are made available under the
Expand Down Expand Up @@ -131,15 +131,6 @@ public static boolean testCompositeELResolver(ELContext elContext,
buf.append("getCommonPropertyType() returns ");
buf.append(commonPropertyType.getName() + NL);

// getFeatureDescriptors()
elContext.setPropertyResolved(false);
Iterator i = compResolver.getFeatureDescriptors(elContext, null);
boolean fdPass = ResolverTest.testFeatureDescriptors(i, compResolver, null,
buf);
if (!fdPass) {
pass = false;
}

return pass;
}

Expand Down Expand Up @@ -243,14 +234,6 @@ public static boolean testELResolver(ELContext elContext, ELResolver resolver,
buf.append("getCommonPropertyType() returns ");
buf.append(commonPropertyType.getName() + "" + NL);

// getFeatureDescriptors()
elContext.setPropertyResolved(false);
Iterator i = resolver.getFeatureDescriptors(elContext, base);
boolean fdPass = ResolverTest.testFeatureDescriptors(i, resolver, base,
buf);
if (!fdPass) {
pass = false;
}
return pass;
}

Expand Down

0 comments on commit ae3aab9

Please sign in to comment.