Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Compatibility with the latest versions of Qdox #6

Merged
merged 1 commit into from Oct 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -244,7 +244,7 @@ private String findRole( JavaClass javaClass )
// Remove any Plexus specific interfaces from the calculation
// ----------------------------------------------------------------------

List<JavaClass> interfaces = new ArrayList<JavaClass>( javaClass.getImplementedInterfaces() );
List<JavaClass> interfaces = new ArrayList<JavaClass>( javaClass.getInterfaces() );

for ( Iterator<JavaClass> it = interfaces.iterator(); it.hasNext(); )
{
Expand Down Expand Up @@ -518,4 +518,4 @@ private String getParameter( Map<String, String> parameters, String parameter )

return value;
}
}
}