Skip to content

Commit

Permalink
Merge branch '2.9' into 2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jul 31, 2019
2 parents 3b53639 + fe5000e commit 2d572a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ public StringBuilder getGenericSignature(StringBuilder sb) {
if (_referencedType != null) {
return _referencedType.getGenericSignature(sb);
}
return _referencedType.getGenericSignature(sb);
return sb.append("?");
}

@Override
public StringBuilder getErasedSignature(StringBuilder sb) {
if (_referencedType != null) {
return _referencedType.getErasedSignature(sb);
}
return _referencedType.getErasedSignature(sb);
return sb;
}

@Override
Expand Down

0 comments on commit 2d572a8

Please sign in to comment.