We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 137e340 commit 3efb7c3Copy full SHA for 3efb7c3
src/main/java/org/apache/commons/lang3/ClassUtils.java
@@ -383,7 +383,7 @@ public static List<Class<?>> getAllInterfaces(final Class<?> cls) {
383
* @param cls the class to look up, may be {@code null}.
384
* @param interfacesFound the {@link Set} of interfaces for the class.
385
*/
386
- private static void getAllInterfaces(Class<?> cls, final HashSet<Class<?>> interfacesFound) {
+ private static void getAllInterfaces(Class<?> cls, final Set<Class<?>> interfacesFound) {
387
while (cls != null) {
388
for (final Class<?> i : cls.getInterfaces()) {
389
if (interfacesFound.add(i)) {
0 commit comments