Skip to content

Commit

Permalink
Fix for issue #584
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-milles authored May 14, 2018
1 parent 963d06b commit 5d430a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ protected void analyzeGenerics(ClassNode node) {
ClassNode[] upperBounds = genericType.getUpperBounds().clone();
// prevent recursion by nulling out duplicates
for (int j = 0; j < upperBounds.length; j++) {
if (upperBounds[i].getName().equals(node.getName())) {
upperBounds[i] = null;
if (upperBounds[j].getName().equals(node.getName())) {
upperBounds[j] = null;
}
}
analyzeTypes(upperBounds);
Expand Down

0 comments on commit 5d430a3

Please sign in to comment.