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

Commit

Permalink
Merge pull request #6 from ebourg/patch-1
Browse files Browse the repository at this point in the history
Compatibility with the latest versions of Qdox
  • Loading branch information
rfscholte committed Oct 27, 2017
2 parents 4fea8b6 + 1680076 commit 539c666
Showing 1 changed file with 2 additions and 2 deletions.
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;
}
}
}

0 comments on commit 539c666

Please sign in to comment.