View | Details | Raw Unified | Return to bug 140879 | Differences between
and this patch

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/BinaryMethod.java (-1 / +1 lines)
Lines 558-564 Link Here
558
	char[] genericSignature = info.getGenericSignature();
558
	char[] genericSignature = info.getGenericSignature();
559
	String anchor = null;
559
	String anchor = null;
560
	if (genericSignature != null) {
560
	if (genericSignature != null) {
561
		CharOperation.replace(genericSignature, '/', '.');
561
		genericSignature = CharOperation.replaceOnCopy(genericSignature, '/', '.');
562
		anchor = Util.toAnchor(genericSignature, methodName, Flags.isVarargs(this.getFlags()));
562
		anchor = Util.toAnchor(genericSignature, methodName, Flags.isVarargs(this.getFlags()));
563
		if (anchor == null) throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.UNKNOWN_JAVADOC_FORMAT, this));
563
		if (anchor == null) throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.UNKNOWN_JAVADOC_FORMAT, this));
564
	} else {
564
	} else {

Return to bug 140879