We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The method has the following implementation:
@Override public CtTypeReference<?> getSuperclass() { CtType<T> t = getDeclaration(); if (t != null) { return t.getSuperclass(); } else { Class<T> c = getActualClass(); Class<?> sc = c.getSuperclass(); if (sc == null) { return null; } return getFactory().Type().createReference(sc); } }
As you can see, it doesn't check for noClasspath and, thus, may fail when calling getActualClass().
getActualClass()
The text was updated successfully, but these errors were encountered:
Fixes INRIA#1125.
35b66ee
5b21903
No branches or pull requests
The method has the following implementation:
As you can see, it doesn't check for noClasspath and, thus, may fail when calling
getActualClass()
.The text was updated successfully, but these errors were encountered: