Skip to content

Commit

Permalink
address CR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kelloggm committed Nov 22, 2023
1 parent 0254a20 commit 2ffc4d6
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,10 @@ public Visitable visit(MethodDeclaration method, Void p) {
usedClass.add(resolvedType.asReferenceType().getQualifiedName());
}
} catch (UnsupportedOperationException e) {
// Occurs if the type is a type variable, so there is nothing to do.
// The type variable will be resolved later, by the UnsolvedSymbolVisitor.
// Occurs if the type is a type variable, so there is nothing to do:
// the type variable must have been declared in one of the containing scopes,
// and UnsolvedSymbolVisitor should already guarantee that the variable will
// be included in one of the classes that Specimin outputs.
}
}
Visitable result = super.visit(method, p);
Expand Down

0 comments on commit 2ffc4d6

Please sign in to comment.