Skip to content
This repository was archived by the owner on Dec 4, 2024. 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
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;
}
}
}