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
As the fragment doesn't resolve to a SimpleName, adding a space is skipped.
SimpleName
input:
result of MethodImpl.getJavaDoc().toString:
MethodImpl.getJavaDoc().toString:
/** * Convenience entry point for {@link IdCard} assertions when being mixed with other "assertThat" assertion libraries. * @see #assertThat */
result of MethodImpl.getJavaDoc().getFullText():
MethodImpl.getJavaDoc().getFullText():
Convenience entry point for {@link IdCard} assertions when being mixed with other "assertThat" assertion libraries. @see#assertThat
workaround for my use:
String fullText = impl.getJavaDoc().getFullText(); String replace = StringUtils.replace(fullText, "@see#", "@see #"); copy.getJavaDoc().setText(replace);
The text was updated successfully, but these errors were encountered:
Handle spaces in JavadocImpl.getFullSpace
9903bdd
Fixes #245
c93c16e
@gastaldi You are awesome :) That is all.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
As the fragment doesn't resolve to a
SimpleName
, adding a space is skipped.input:
result of
MethodImpl.getJavaDoc().toString:
result of
MethodImpl.getJavaDoc().getFullText():
workaround for my use:
The text was updated successfully, but these errors were encountered: